diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:56:41 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:59:33 -0800 |
commit | d577d991b97ae2b5ee1af23641bcffc3f83af5b2 (patch) | |
tree | 590639d50205d1bcfaff2a7d2dc6ebf3f373c7ed /iup/srclua5 |
Initial import. Contains the im, cd and iup librairies, and a "working" Makefile for them under linux.
Diffstat (limited to 'iup/srclua5')
375 files changed, 25292 insertions, 0 deletions
diff --git a/iup/srclua5/Makefile b/iup/srclua5/Makefile new file mode 100755 index 0000000..3942e79 --- /dev/null +++ b/iup/srclua5/Makefile @@ -0,0 +1,24 @@ + +.PHONY: do_all iuplua iupluacd iupluacontrols iuplua_pplot iupluagl iupluaim iupluaimglib +do_all: iuplua iupluacd iupluacontrols iuplua_pplot iupluagl iupluaim iupluaimglib + +iuplua: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak + +iupluacd: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak MF=iupcd + +iupluacontrols: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak MF=iupcontrols + +iuplua_pplot: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak MF=iup_pplot + +iupluagl: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak MF=iupgl + +iupluaim: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak MF=iupim + +iupluaimglib: + @$(MAKE) --no-print-directory -f ../tecmake_compact.mak MF=iupimglib diff --git a/iup/srclua5/button.lua b/iup/srclua5/button.lua new file mode 100755 index 0000000..946a05e --- /dev/null +++ b/iup/srclua5/button.lua @@ -0,0 +1,18 @@ +------------------------------------------------------------------------------ +-- Button class +------------------------------------------------------------------------------ +local ctrl = { + nick = "button", + parent = WIDGET, + creation = "S-", + callback = { + action = "", + } +} + +function ctrl.createElement(class, arg) + return Button(arg.title) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/canvas.lua b/iup/srclua5/canvas.lua new file mode 100755 index 0000000..562d671 --- /dev/null +++ b/iup/srclua5/canvas.lua @@ -0,0 +1,29 @@ +------------------------------------------------------------------------------ +-- Canvas class +------------------------------------------------------------------------------ +local ctrl = { + nick = "canvas", + parent = WIDGET, + creation = "-", + callback = { + action = "ff", + button_cb = "nnnns", + enterwindow_cb = "", + leavewindow_cb = "", + motion_cb = "nns", + resize_cb = "nn", + scroll_cb = "nff", + keypress_cb = "nn", + wom_cb = "n", + wheel_cb = "fnns", + mdiactivate_cb = "", + focus_cb = "n", + } +} + +function ctrl.createElement(class, arg) + return Canvas() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/cbox.lua b/iup/srclua5/cbox.lua new file mode 100755 index 0000000..3533970 --- /dev/null +++ b/iup/srclua5/cbox.lua @@ -0,0 +1,28 @@ +------------------------------------------------------------------------------ +-- Cbox class +------------------------------------------------------------------------------ +local ctrl = { + nick = "cbox", + parent = WIDGET, + creation = "v", + callback = {}, + funcname = "Cboxv", + createfunc = [[ +static int Cboxv(lua_State *L) +{ + Ihandle **hlist = iuplua_checkihandle_array(L, 1); + Ihandle *h = IupCboxv(hlist); + iuplua_plugstate(L, h); + iuplua_pushihandle_raw(L, h); + free(hlist); + return 1; +} + ]], +} + +function ctrl.createElement(class, arg) + return Cboxv(arg) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/cells.lua b/iup/srclua5/cells.lua new file mode 100755 index 0000000..9c914f2 --- /dev/null +++ b/iup/srclua5/cells.lua @@ -0,0 +1,32 @@ +------------------------------------------------------------------------------ +-- Cells class +------------------------------------------------------------------------------ +local ctrl = { + nick = "cells", + parent = WIDGET, + creation = "", + callback = { + mouseclick_cb = "nnnnnns", + mousemotion_cb = "nnnns", + scrolling_cb = "nn", +-- draw_cb = "nnnnnnn", -- already registered by the matrix + width_cb = "n", + height_cb = "n", + nlines_cb = "", + ncols_cb = "", + hspan_cb = "nn", + vspan_cb = "nn", + }, + include = "iupcontrols.h", +} + +function ctrl.redraw(handle) + handle.repaint = "YES" +end + +function ctrl.createElement(class, arg) + return Cells() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/clipboard.lua b/iup/srclua5/clipboard.lua new file mode 100755 index 0000000..e60b8bd --- /dev/null +++ b/iup/srclua5/clipboard.lua @@ -0,0 +1,17 @@ +------------------------------------------------------------------------------ +-- Clipboard class +------------------------------------------------------------------------------ +local ctrl = { + nick = "clipboard", + parent = WIDGET, + creation = "", + callback = { + }, +} + +function ctrl.createElement(class, arg) + return Clipboard() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/colorbar.lua b/iup/srclua5/colorbar.lua new file mode 100755 index 0000000..524d5f3 --- /dev/null +++ b/iup/srclua5/colorbar.lua @@ -0,0 +1,26 @@ +------------------------------------------------------------------------------ +-- Colorbar class +------------------------------------------------------------------------------ +local ctrl = { + nick = "colorbar", + parent = WIDGET, + creation = "", + callback = { + select_cb = "nn", + cell_cb = {"n", ret = "s"}, + switch_cb = "nn", + extended_cb = "n", + }, + funcname = "Colorbar", + include = "iupcontrols.h", +} + +PRIMARY = -1 +SECONDARY = -2 + +function ctrl.createElement(class, arg) + return Colorbar(arg.action) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/colorbrowser.lua b/iup/srclua5/colorbrowser.lua new file mode 100755 index 0000000..16ac58f --- /dev/null +++ b/iup/srclua5/colorbrowser.lua @@ -0,0 +1,21 @@ +------------------------------------------------------------------------------ +-- ColorBrowser class +------------------------------------------------------------------------------ +local ctrl = { + nick = "colorbrowser", + parent = WIDGET, + creation = "", + callback = { + drag_cb = "ccc", + change_cb = "ccc", + }, + funcname = "ColorBrowser", + include = "iupcontrols.h", +} + +function ctrl.createElement(class, arg) + return ColorBrowser(arg.action) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/colordlg.lua b/iup/srclua5/colordlg.lua new file mode 100755 index 0000000..6eea53b --- /dev/null +++ b/iup/srclua5/colordlg.lua @@ -0,0 +1,26 @@ +------------------------------------------------------------------------------ +-- ColorDlg class +------------------------------------------------------------------------------ +local ctrl = { + nick = "colordlg", + parent = WIDGET, + creation = "", + funcname = "ColorDlg", + callback = {} +} + +function ctrl.popup(handle, x, y) + Popup(handle,x,y) +end + +function ctrl.destroy(handle) + return Destroy(handle) +end + +function ctrl.createElement(class, arg) + return ColorDlg() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") + diff --git a/iup/srclua5/config.mak b/iup/srclua5/config.mak new file mode 100755 index 0000000..7979f0e --- /dev/null +++ b/iup/srclua5/config.mak @@ -0,0 +1,31 @@ +PROJNAME = iup +LIBNAME = iuplua51 +OPT = YES +DEF_FILE = iuplua5.def + +DEFINES = IUPLUA_USELOH + +USE_LUA51 = Yes +NO_LUALINK = Yes + +INCLUDES = ../include ../src +LDIR = ../lib/$(TEC_UNAME) +LIBS = iup + +CTRLUA = button.lua canvas.lua dialog.lua colordlg.lua clipboard.lua \ + filedlg.lua fill.lua frame.lua hbox.lua normalizer.lua \ + item.lua image.lua imagergb.lua imagergba.lua label.lua \ + menu.lua multiline.lua list.lua separator.lua user.lua \ + submenu.lua text.lua toggle.lua vbox.lua zbox.lua timer.lua \ + sbox.lua spin.lua spinbox.lua cbox.lua messagedlg.lua \ + radio.lua val.lua tabs.lua fontdlg.lua tree.lua progressbar.lua + +GC := $(addsuffix .c, $(basename $(CTRLUA))) +GC := $(addprefix il_, $(GC)) +SRCLUA = iuplua.lua constants.lua $(CTRLUA) +LOHDIR = loh + +$(GC) : il_%.c : %.lua generator.lua + $(LUABIN) generator.lua $< + +SRC = iuplua.c iuplua_api.c il_tree_aux.c il_scanf.c il_getparam.c il_getcolor.c $(GC) diff --git a/iup/srclua5/constants.lua b/iup/srclua5/constants.lua new file mode 100755 index 0000000..9a72f6a --- /dev/null +++ b/iup/srclua5/constants.lua @@ -0,0 +1,72 @@ +-- This file is executed with the "iup" table already as the globalindex + +---------------------------------------------------------------------------- +-- Common return values +---------------------------------------------------------------------------- +ERROR = 1 +NOERROR = 0 +OPENED = -1 +INVALID = -1 + +---------------------------------------------------------------------------- +-- Callback return values +---------------------------------------------------------------------------- +IGNORE = -1 +DEFAULT = -2 +CLOSE = -3 +CONTINUE = -4 + +---------------------------------------------------------------------------- +-- IupPopup e IupShowXY +---------------------------------------------------------------------------- +CENTER = 65535 +LEFT = 65534 +RIGHT = 65533 +MOUSEPOS = 65532 +CURRENT = 65531 +CENTERPARENT = 65530 +TOP = LEFT +BOTTOM = RIGHT + +---------------------------------------------------------------------------- +-- Scrollbar +---------------------------------------------------------------------------- +SBUP = 0 +SBDN = 1 +SBPGUP = 2 +SBPGDN = 3 +SBPOSV = 4 +SBDRAGV = 5 +SBLEFT = 6 +SBRIGHT = 7 +SBPGLEFT = 8 +SBPGRIGHT = 9 +SBPOSH = 10 +SBDRAGH = 11 + +---------------------------------------------------------------------------- +-- SHOW_CB +---------------------------------------------------------------------------- +SHOW = 0 +RESTORE = 1 +MINIMIZE = 2 +MAXIMIZE = 3 +HIDE = 4 + +---------------------------------------------------------------------------- +-- BUTTON_CB +---------------------------------------------------------------------------- +BUTTON1 = string.byte('1') +BUTTON2 = string.byte('2') +BUTTON3 = string.byte('3') +BUTTON4 = string.byte('4') +BUTTON5 = string.byte('5') + +---------------------------------------------------------------------------- +-- Pre-Defined Masks +---------------------------------------------------------------------------- +MASK_FLOAT = "[+/-]?(/d+/.?/d*|/./d+)" +MASK_UFLOAT = "(/d+/.?/d*|/./d+)" +MASK_EFLOAT = "[+/-]?(/d+/.?/d*|/./d+)([eE][+/-]?/d+)?" +MASK_INT = "[+/-]?/d+" +MASK_UINT = "/d+" diff --git a/iup/srclua5/ctrl_template.lua b/iup/srclua5/ctrl_template.lua new file mode 100755 index 0000000..f314ac6 --- /dev/null +++ b/iup/srclua5/ctrl_template.lua @@ -0,0 +1,94 @@ +------------------------------------------------------------------------------ +-- Template to create control classes for IupLua5 +-- The Lua module is used by the "generator.lua" to build a C module, +-- and loaded during iuplua_open to initialize the control. +------------------------------------------------------------------------------ +local ctrl = { + nick = "mycontrol", -- name of the control, used in the control creation: iup.mycontrol{} + -- also used for the generated C module + parent = WIDGET, -- used to define a few methods used fro creation and set attribute + creation = "nn", -- the creation parameters in Lua + -- "n" = int + -- "d" = double + -- "s" = char* + -- "S" = optional char*, can be nil + -- "i" = Ihandle* + -- "-" = NULL, no parameters in Lua, but a NULL parameter in C + -- "a" = char* array in a table + -- "t" = int array in a table + -- "v" = Ihandle* array in a table + + funcname = "myControl", -- [optional] name of the function used in C + -- default is ctrl.nick with first letter uppercase + + callback = { -- partial list of callbacks + -- only the callbacks that are not already defined by other controls needs to be defined + action = "ff", + button_cb = "nnnns", + enterwindow_cb = "", + leavewindow_cb = "", + motion_cb = "nns", + resize_cb = "nn", + scroll_cb = "nff", + keypress_cb = "nn", + wom_cb = "n", + wheel_cb = "fnns", + mdiactivate_cb = "", + focus_cb = "n", + value_cb = {"nn", ret = "s"}, -- ret is return type, default is n ("int") + + -- the following types can be used for callback parameters: + -- n = "int", + -- s = "char *", + -- i = "Ihandle *", + -- c = "unsigned char ", + -- d = "double", + -- f = "float", + -- v = "Ihandle **", + -- + -- Other parameters must be implemented in C using the extrafuncs module + + -- IMPORTANT: callbacks with the same name in different controls + -- are assumed to have the same parameters, that's why they are defined only once + -- When callbacks conflict using the same name, but different parameters + -- generator.lua must be edited to include the callback in the list of conflicting callbacks + -- "action" is a common callback that conflicts + -- In the callback list, just declare the callback with the parameters used in that control. + } + + include = "iupmycontrol.h", -- [optional] header to be included, it is where the creation function is declared. + extrafuncs = 1, -- [optional] additional module in C called by the initialization function + + createfunc = [[ -- [optional] creation function in C, + -- used if creation parameters needs some interpretation in C + -- not to be used together with funcname +#include<stdlib.h> +static int myControl (lua_State * L) +{ + xxxx; + yyyy; + return 1; +} +]] + + extracode = [[ -- [optional] extra fucntions to be defined in C. +int luaopen_iupluamycontrol51(lua_State* L) +{ + return iupmycontrollua_open(L); +} +]] + +} + +-- must be defined so the WIDGET constructor can call it +function ctrl.createElement(class, arg) + return myControl() +end + +-- here you can add some custom methods to the class +function ctrl.popup(handle, x, y) + Popup(handle,x,y) +end + +iupRegisterWidget(ctrl) -- will make iup.mycontrol available +iupSetClass(ctrl, "iup widget") -- register the class in the registry diff --git a/iup/srclua5/dial.lua b/iup/srclua5/dial.lua new file mode 100755 index 0000000..0384b43 --- /dev/null +++ b/iup/srclua5/dial.lua @@ -0,0 +1,21 @@ +------------------------------------------------------------------------------ +-- Dial class +------------------------------------------------------------------------------ +local ctrl = { + nick = "dial", + parent = WIDGET, + creation = "s", + callback = { + mousemove_cb = "d", -- already registered by the val, but has a name conflict +-- button_press_cb = "d", -- already registered by the val +-- button_release_cb = "d", -- already registered by the val + }, + include = "iupcontrols.h", +} + +function ctrl.createElement(class, arg) + return Dial(arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/dialog.lua b/iup/srclua5/dialog.lua new file mode 100755 index 0000000..a996ad7 --- /dev/null +++ b/iup/srclua5/dialog.lua @@ -0,0 +1,36 @@ +------------------------------------------------------------------------------ +-- Dialog class +------------------------------------------------------------------------------ +local ctrl = { + nick = "dialog", + parent = WIDGET, + creation = "I", + callback = { + map_cb = "", + unmap_cb = "", + close_cb = "", + show_cb = "n", + move_cb = "nn", + trayclick_cb = "nnn", + dropfiles_cb = "snnn", + } +} + +function ctrl.createElement(class, arg) + return Dialog(arg[1]) +end + +function ctrl.popup(handle, x, y) + Popup(handle,x,y) +end + +function ctrl.showxy(handle, x, y) + return ShowXY(handle, x, y) +end + +function ctrl.destroy(handle) + return Destroy(handle) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/filedlg.lua b/iup/srclua5/filedlg.lua new file mode 100755 index 0000000..71c4bb4 --- /dev/null +++ b/iup/srclua5/filedlg.lua @@ -0,0 +1,28 @@ +------------------------------------------------------------------------------ +-- FileDlg class +------------------------------------------------------------------------------ +local ctrl = { + nick = "filedlg", + parent = WIDGET, + creation = "", + callback = { + file_cb = "ss", + }, + funcname = "FileDlg" +} + +function ctrl.popup(handle, x, y) + Popup(handle,x,y) +end + +function ctrl.destroy(handle) + return Destroy(handle) +end + +function ctrl.createElement(class, arg) + return FileDlg() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") + diff --git a/iup/srclua5/fill.lua b/iup/srclua5/fill.lua new file mode 100755 index 0000000..4bf7803 --- /dev/null +++ b/iup/srclua5/fill.lua @@ -0,0 +1,16 @@ +------------------------------------------------------------------------------ +-- Fill class +------------------------------------------------------------------------------ +local ctrl = { + nick = "fill", + parent = WIDGET, + creation = "", + callback = {} +} + +function ctrl.createElement(class, arg) + return Fill() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/fontdlg.lua b/iup/srclua5/fontdlg.lua new file mode 100755 index 0000000..2c88d26 --- /dev/null +++ b/iup/srclua5/fontdlg.lua @@ -0,0 +1,26 @@ +------------------------------------------------------------------------------ +-- FontDlg class +------------------------------------------------------------------------------ +local ctrl = { + nick = "fontdlg", + parent = WIDGET, + creation = "", + funcname = "FontDlg", + callback = {} +} + +function ctrl.popup(handle, x, y) + Popup(handle,x,y) +end + +function ctrl.destroy(handle) + return Destroy(handle) +end + +function ctrl.createElement(class, arg) + return FontDlg() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") + diff --git a/iup/srclua5/frame.lua b/iup/srclua5/frame.lua new file mode 100755 index 0000000..7a1c1cc --- /dev/null +++ b/iup/srclua5/frame.lua @@ -0,0 +1,16 @@ +------------------------------------------------------------------------------ +-- Frame class +------------------------------------------------------------------------------ +local ctrl = { + nick = "frame", + parent = WIDGET, + creation = "i", + callback = {} +} + +function ctrl.createElement(class, arg) + return Frame(arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/gauge.lua b/iup/srclua5/gauge.lua new file mode 100755 index 0000000..45a72b3 --- /dev/null +++ b/iup/srclua5/gauge.lua @@ -0,0 +1,17 @@ +------------------------------------------------------------------------------ +-- Gauge class +------------------------------------------------------------------------------ +local ctrl = { + nick = "gauge", + parent = WIDGET, + creation = "", + callback = {}, + include = "iupcontrols.h", +} + +function ctrl.createElement(class, arg) + return Gauge(arg.action) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/generator.lua b/iup/srclua5/generator.lua new file mode 100755 index 0000000..24fd325 --- /dev/null +++ b/iup/srclua5/generator.lua @@ -0,0 +1,222 @@ + +function dofile(f) + pcall(loadfile(f)) +end + +-- compatibility functions (with iuplua.lua) +function iupSetClass(ctrl, name) + element = ctrl +end + +-- dummy functions +iupluaNewClass = function() end +iupSetMethod = iupluaNewClass +iupRegisterWidget = iupluaNewClass + +c_types = { + n = "int", + s = "char *", + i = "Ihandle *", + c = "unsigned char ", + d = "double", + f = "float", + v = "Ihandle **", +} + +-- Adjust the callbacks table +function adjustcallbacktable(c) + d = {} + for i,j in pairs(c) do + if type(j) == "string" then + d[i] = { j, "IUP_".. string.upper(i)} + elseif type(j) == "table" then + d[i] = j + else + print("ERROR IN CALLBACK TABLE FORMAT") + end + end + return d +end + + +function header(o,i) + io.write [[ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don t change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +]] + if i then io.write('#include "',i,'"\n') end + io.write('#include "il.h"\n\n\n') +end + +function firstupper(name) + return string.upper(string.sub(name,1,1)) .. string.sub(name,2,-1) +end + +function write_creation(o, t) + local aux = {n = 1} + local u = firstupper(o) + local v = t.creation + local c = t.callback + if t.funcname then + u = t.funcname + end + io.write ("static int ",u,"(lua_State *L)\n") + io.write ("{\n") + if t.rettype == nil then io.write(" Ihandle *ih = Iup",u,"(") + elseif t.rettype == "n" then io.write(" int n = (Iup",u,"(") + elseif t.rettype == "s" then io.write(" char *s = (Iup",u,"(") + end + local max = string.len(v) + string.gsub(v, "(.)", function(p) + if p == "n" then io.write("luaL_checkint(L, ",aux.n,")") + elseif p == "d" then io.write("luaL_number(L, ",aux.n,")") + elseif p == "s" then io.write("(char *) luaL_checkstring(L, ",aux.n,")") + elseif p == "S" then io.write("(char *) luaL_optstring(L, ",aux.n,', NULL)') + elseif p == "i" then io.write("iuplua_checkihandle(L, ",aux.n,")") + elseif p == "I" then io.write("iuplua_checkihandleornil(L, ",aux.n,")") + elseif p == "-" then io.write("NULL") + elseif p == "a" then io.write("iuplua_checkstring_array(L, ",aux.n,")") + elseif p == "t" then io.write("iuplua_checkint_array(L, ",aux.n,")") + elseif p == "v" then io.write("iuplua_checkihandle_array(L, ",aux.n,")") + else io.write("FORMAT '", p, "' NOT SUPPORTED\n") + end + if aux.n < max then io.write(", ") end + aux.n = aux.n + 1 + end) + io.write(");\n") + + io.write(" iuplua_plugstate(L, ih);\n") + io.write(" iuplua_pushihandle_raw(L, ih);\n") + io.write(" return 1;\n") + io.write("}\n\n") +end + +function write_callbacks(o, c) + local aux = { } + for i,v in pairs(c) do + local s = v[1] + local max = string.len(s) + aux.n = 0 + io.write("static ") + if v.ret then + if v.ret == "s" then + io.write("char * ") + end + else + io.write("int ") + end + io.write(o, "_", i, "(Ihandle *self") + if max > 0 then io.write(", ") end + string.gsub(s, "(.)", function(p) + io.write(c_types[p], " p", aux.n) + aux.n = aux.n + 1 + if aux.n < max then io.write(", ") end + end) + io.write(")\n{\n") + io.write(' lua_State *L = iuplua_call_start(self, "', i, '");') + aux.n = 0 + string.gsub(s, "(.)", function(p) + if p == "n" or p == "f" or p == "d" or p == "c" then + io.write("\n lua_pushnumber(L, p"..aux.n..");") + elseif p == "s" then + io.write("\n lua_pushstring(L, p"..aux.n..");") + elseif p == "i" then + io.write("\n iuplua_pushihandle(L, p"..aux.n..");") + else + io.write("\n ERROR !! ") + end + aux.n = aux.n + 1 + end) + if v.ret and v.ret == "s" then + io.write("\n return iuplua_call_rs(L, " .. max .. ");") + else + io.write("\n return iuplua_call(L, " .. max .. ");") + end + io.write("\n}\n\n") + end +end + +function write_initialization(o,t) + local aux= {n=1} + local c = t.callback + local u = firstupper(o) + if t.extrafuncs then + io.write('void iuplua_', o,'funcs_open(lua_State *L);\n\n') + end + if t.openfuncname then + io.write("void ", t.openfuncname, "(lua_State * L)\n") + else + io.write("int iup", o,"lua_open(lua_State * L)\n") + end + io.write("{\n") + io.write(" iuplua_register(L, ") + if t.funcname then + u = t.funcname + end + io.write(u, ', "', u,'");\n\n') + + for i,v in pairs(c) do + local type = "NULL" + if i == "action" or + i == "action_cb" or + i == "edit_cb" or + i == "mousemove_cb" then + type = '"'..string.lower(o)..'"' + end + io.write(' iuplua_register_cb(L, "',string.upper(i),'", (lua_CFunction)',o,'_',i,', ',type,');\n') + first = 0 + end + io.write('\n') + + if t.extrafuncs then + io.write(' iuplua_', o,'funcs_open(L);\n\n') + end + io.write('#ifdef IUPLUA_USELOH\n') + io.write('#ifdef TEC_BIGENDIAN\n') + io.write('#ifdef TEC_64\n') + io.write('#include "loh/', o,'_be64.loh"\n') + io.write('#else\n') + io.write('#include "loh/', o,'_be32.loh"\n') + io.write('#endif\n') + io.write('#else\n') + io.write('#ifdef TEC_64\n') + io.write('#ifdef WIN64\n') + io.write('#include "loh/', o,'_le64w.loh"\n') + io.write('#else\n') + io.write('#include "loh/', o,'_le64.loh"\n') + io.write('#endif\n') + io.write('#else\n') + io.write('#include "loh/', o,'.loh"\n') + io.write('#endif\n') + io.write('#endif\n') + io.write('#else\n') + io.write(' iuplua_dofile(L, "', o,'.lua");\n') + io.write('#endif\n\n') + io.write(' return 0;\n') + io.write("}\n\n") +end + +dofile(arg[1]) +element.callback = adjustcallbacktable(element.callback) + +io.output("il_"..element.nick..".c") +header(element.nick, element.include) +write_callbacks(element.nick, element.callback) +if element.createfunc == nil then + write_creation(element.nick, element) +else + io.write(element.createfunc) +end +write_initialization(element.nick, element) +if element.extracode then + io.write(element.extracode) +end diff --git a/iup/srclua5/glcanvas.lua b/iup/srclua5/glcanvas.lua new file mode 100755 index 0000000..782e974 --- /dev/null +++ b/iup/srclua5/glcanvas.lua @@ -0,0 +1,46 @@ +------------------------------------------------------------------------------ +-- GLCanvas class +------------------------------------------------------------------------------ +local ctrl = { + nick = "glcanvas", + parent = WIDGET, + creation = "-", + funcname = "GLCanvas", + include = "iupgl.h", + callback = { + action = "nn", + }, + extrafuncs = 1, + extracode = [[ +int iupgllua_open(lua_State * L) +{ + if (iuplua_opencall_internal(L)) + IupGLCanvasOpen(); + + iuplua_changeEnv(L); + iupglcanvaslua_open(L); + iuplua_returnEnv(L); + return 0; +} + +/* obligatory to use require"iupluagl" */ +int luaopen_iupluagl(lua_State* L) +{ + return iupgllua_open(L); +} + +/* obligatory to use require"iupluagl51" */ +int luaopen_iupluagl51(lua_State* L) +{ + return iupgllua_open(L); +} + +]] +} + +function ctrl.createElement(class, arg) + return GLCanvas() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/hbox.lua b/iup/srclua5/hbox.lua new file mode 100755 index 0000000..38213bb --- /dev/null +++ b/iup/srclua5/hbox.lua @@ -0,0 +1,20 @@ +------------------------------------------------------------------------------ +-- HBox class +------------------------------------------------------------------------------ +local ctrl = { + nick = "hbox", + parent = BOX, + creation = "-", + callback = {} +} + +function ctrl.append(handle, elem) + Append(handle, elem) +end + +function ctrl.createElement(class, arg) + return Hbox() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/il.h b/iup/srclua5/il.h new file mode 100755 index 0000000..81a0140 --- /dev/null +++ b/iup/srclua5/il.h @@ -0,0 +1,161 @@ +/** \file + * \brief IUPLua5 internal Functions + * + * See Copyright Notice in "iup.h" + */ + +#ifndef __IL_H +#define __IL_H + +#ifdef __cplusplus +extern "C" { +#endif + +int iuplistlua_open (lua_State * L); +int iuplabellua_open (lua_State * L); +int iupitemlua_open (lua_State * L); +int iupimagelua_open (lua_State * L); +int iuphboxlua_open (lua_State * L); +int iupframelua_open (lua_State * L); +int iupfilllua_open (lua_State * L); +int iupfiledlglua_open (lua_State * L); +int iupdialoglua_open (lua_State * L); +int iupcanvaslua_open (lua_State * L); +int iupbuttonlua_open (lua_State * L); +int iupzboxlua_open (lua_State * L); +int iupvboxlua_open (lua_State * L); +int iuptogglelua_open (lua_State * L); +int iuptimerlua_open (lua_State * L); +int iuptextlua_open (lua_State * L); +int iupsubmenulua_open (lua_State * L); +int iupseparatorlua_open (lua_State * L); +int iupradiolua_open (lua_State * L); +int iupmultilinelua_open (lua_State * L); +int iupmenulua_open (lua_State * L); +int iupcboxlua_open (lua_State * L); +int iupspinboxlua_open (lua_State * L); +int iupspinlua_open (lua_State * L); +int iupsboxlua_open (lua_State * L); +int iupgclua_open (lua_State * L); +int iupvallua_open (lua_State * L); +int iuptabslua_open (lua_State * L); +int iupfontdlglua_open(lua_State * L); +int iupmessagedlglua_open(lua_State * L); +int iupcolordlglua_open(lua_State * L); +int iupimagergbalua_open(lua_State * L); +int iupimagergblua_open(lua_State * L); +int iupprogressbarlua_open(lua_State * L); +int iupnormalizerlua_open(lua_State * L); +int iupuserlua_open(lua_State * L); +int iuptreelua_open(lua_State * L); +int iupclipboardlua_open(lua_State * L); + +void iupgetparamlua_open (lua_State * L); + +int iupluaScanf(lua_State *L); +int iupluaapi_open(lua_State * L); + + + /* Registration */ + +/** Sets the global index as the table "iup". + * Used to simplify the registration of functions and constants in the "iup" namespace. + */ +void iuplua_changeEnv(lua_State *L); + +/** Resets the global index. + * Must match a iuplua_changeEnv call. + */ +void iuplua_returnEnv(lua_State *L); + +/** Returns true if IupOpen was called from inside the IupLua initialization function (iuplua_open). + * All the other C intialization functions are called from the respective IupLua initialization functions. + */ +int iuplua_opencall_internal(lua_State *L); + +/** Register a function. + */ +void iuplua_register(lua_State *L, lua_CFunction func, const char* name); + +/** Register a string. + */ +void iuplua_regstring(lua_State *L, const char* str, const char* name); + + + /* Callbacks */ + +/** Stores the Lua State inside the IUP element, + * so it can be retreived from inside a callback. + * Used in the creation of the element. + */ +void iuplua_plugstate(lua_State *L, Ihandle *ih); + +/** Retrieve the Lua State. Used inside a callback. + */ +lua_State* iuplua_getstate(Ihandle *ih); + +/** First function called inside a callback. + * It prepares the stack for the call and returns the Lua state. + */ +lua_State * iuplua_call_start(Ihandle *ih, const char* name); + +/** Called when a callback in Lua should be called. + * nargs is the number of arguments after the first Ihandle*. + * Returns the callback return value. If nil returns IUP_DEFAULT. + * At the end clears the Lua stack. + */ +int iuplua_call(lua_State *L, int nargs); + +/** Same as /ref iuplua_call, but returns a string. + */ +char* iuplua_call_rs(lua_State *L, int nargs); + +/** Same as lua_pcall, but if an error occour then + * _ERRORMESSAGE is called. + */ +int iuplua_call_raw(lua_State* L, int nargs, int nresults); + +/** Register the callback in the iup.callbaks table. + * If type is not NULL, register in a sub table with the controls class name. + */ +void iuplua_register_cb(lua_State *L, const char* name, lua_CFunction func, const char* type); + + + /* Functions */ + +/** Pushes a raw Ihandle into the stack (an userdata). + * Used by the control creation functions. + */ +void iuplua_pushihandle_raw(lua_State *L, Ihandle *h); + +/** Returns an array of string stored in a Lua table. + */ +char** iuplua_checkstring_array(lua_State *L, int pos); + +/** Returns an array of int stored in a Lua table. + */ +int* iuplua_checkint_array(lua_State *L, int pos); + +/** Returns an array of unsigned char stored in a Lua table. + * Must have count elements. + */ +unsigned char* iuplua_checkuchar_array(lua_State *L, int pos, int count); + +/** Returns an array of ihandle stored in a Lua table. + */ +Ihandle** iuplua_checkihandle_array(lua_State *L, int pos); + +/** Same as iuplua_checkihandle but also accepts nil. + */ +Ihandle *iuplua_checkihandleornil(lua_State *L, int pos); + +/** Removes the references in the Lua registry. + */ +void iuplua_removeihandle(lua_State *L, Ihandle *ih); + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/iup/srclua5/il_button.c b/iup/srclua5/il_button.c new file mode 100755 index 0000000..bd844a5 --- /dev/null +++ b/iup/srclua5/il_button.c @@ -0,0 +1,59 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 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 +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/button_be64.loh" +#else +#include "loh/button_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/button_le64w.loh" +#else +#include "loh/button_le64.loh" +#endif +#else +#include "loh/button.loh" +#endif +#endif +#else + iuplua_dofile(L, "button.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_canvas.c b/iup/srclua5/il_canvas.c new file mode 100755 index 0000000..8cff72a --- /dev/null +++ b/iup/srclua5/il_canvas.c @@ -0,0 +1,159 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 canvas_action(Ihandle *self, float p0, float p1) +{ + lua_State *L = iuplua_call_start(self, "action"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int canvas_leavewindow_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "leavewindow_cb"); + return iuplua_call(L, 0); +} + +static int canvas_resize_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "resize_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int canvas_wheel_cb(Ihandle *self, float p0, int p1, int p2, char * p3) +{ + lua_State *L = iuplua_call_start(self, "wheel_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushstring(L, p3); + return iuplua_call(L, 4); +} + +static int canvas_mdiactivate_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "mdiactivate_cb"); + return iuplua_call(L, 0); +} + +static int canvas_enterwindow_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "enterwindow_cb"); + return iuplua_call(L, 0); +} + +static int canvas_focus_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "focus_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int canvas_button_cb(Ihandle *self, int p0, int p1, int p2, int p3, char * p4) +{ + lua_State *L = iuplua_call_start(self, "button_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushstring(L, p4); + return iuplua_call(L, 5); +} + +static int canvas_keypress_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "keypress_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int canvas_motion_cb(Ihandle *self, int p0, int p1, char * p2) +{ + lua_State *L = iuplua_call_start(self, "motion_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushstring(L, p2); + return iuplua_call(L, 3); +} + +static int canvas_wom_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "wom_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int canvas_scroll_cb(Ihandle *self, int p0, float p1, float p2) +{ + lua_State *L = iuplua_call_start(self, "scroll_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int Canvas(lua_State *L) +{ + Ihandle *ih = IupCanvas(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupcanvaslua_open(lua_State * L) +{ + iuplua_register(L, Canvas, "Canvas"); + + iuplua_register_cb(L, "ACTION", (lua_CFunction)canvas_action, "canvas"); + iuplua_register_cb(L, "LEAVEWINDOW_CB", (lua_CFunction)canvas_leavewindow_cb, NULL); + iuplua_register_cb(L, "RESIZE_CB", (lua_CFunction)canvas_resize_cb, NULL); + iuplua_register_cb(L, "WHEEL_CB", (lua_CFunction)canvas_wheel_cb, NULL); + iuplua_register_cb(L, "MDIACTIVATE_CB", (lua_CFunction)canvas_mdiactivate_cb, NULL); + iuplua_register_cb(L, "ENTERWINDOW_CB", (lua_CFunction)canvas_enterwindow_cb, NULL); + iuplua_register_cb(L, "FOCUS_CB", (lua_CFunction)canvas_focus_cb, NULL); + iuplua_register_cb(L, "BUTTON_CB", (lua_CFunction)canvas_button_cb, NULL); + iuplua_register_cb(L, "KEYPRESS_CB", (lua_CFunction)canvas_keypress_cb, NULL); + iuplua_register_cb(L, "MOTION_CB", (lua_CFunction)canvas_motion_cb, NULL); + iuplua_register_cb(L, "WOM_CB", (lua_CFunction)canvas_wom_cb, NULL); + iuplua_register_cb(L, "SCROLL_CB", (lua_CFunction)canvas_scroll_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/canvas_be64.loh" +#else +#include "loh/canvas_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/canvas_le64w.loh" +#else +#include "loh/canvas_le64.loh" +#endif +#else +#include "loh/canvas.loh" +#endif +#endif +#else + iuplua_dofile(L, "canvas.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_cbox.c b/iup/srclua5/il_cbox.c new file mode 100755 index 0000000..66fdb4c --- /dev/null +++ b/iup/srclua5/il_cbox.c @@ -0,0 +1,53 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Cboxv(lua_State *L) +{ + Ihandle **hlist = iuplua_checkihandle_array(L, 1); + Ihandle *h = IupCboxv(hlist); + iuplua_plugstate(L, h); + iuplua_pushihandle_raw(L, h); + free(hlist); + return 1; +} + int iupcboxlua_open(lua_State * L) +{ + iuplua_register(L, Cboxv, "Cboxv"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/cbox_be64.loh" +#else +#include "loh/cbox_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/cbox_le64w.loh" +#else +#include "loh/cbox_le64.loh" +#endif +#else +#include "loh/cbox.loh" +#endif +#endif +#else + iuplua_dofile(L, "cbox.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_cells.c b/iup/srclua5/il_cells.c new file mode 100755 index 0000000..e0fbc0e --- /dev/null +++ b/iup/srclua5/il_cells.c @@ -0,0 +1,136 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static int cells_width_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "width_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int cells_mousemotion_cb(Ihandle *self, int p0, int p1, int p2, int p3, char * p4) +{ + lua_State *L = iuplua_call_start(self, "mousemotion_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushstring(L, p4); + return iuplua_call(L, 5); +} + +static int cells_mouseclick_cb(Ihandle *self, int p0, int p1, int p2, int p3, int p4, int p5, char * p6) +{ + lua_State *L = iuplua_call_start(self, "mouseclick_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushnumber(L, p4); + lua_pushnumber(L, p5); + lua_pushstring(L, p6); + return iuplua_call(L, 7); +} + +static int cells_ncols_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "ncols_cb"); + return iuplua_call(L, 0); +} + +static int cells_nlines_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "nlines_cb"); + return iuplua_call(L, 0); +} + +static int cells_scrolling_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "scrolling_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int cells_height_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "height_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int cells_hspan_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "hspan_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int cells_vspan_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "vspan_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int Cells(lua_State *L) +{ + Ihandle *ih = IupCells(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupcellslua_open(lua_State * L) +{ + iuplua_register(L, Cells, "Cells"); + + iuplua_register_cb(L, "WIDTH_CB", (lua_CFunction)cells_width_cb, NULL); + iuplua_register_cb(L, "MOUSEMOTION_CB", (lua_CFunction)cells_mousemotion_cb, NULL); + iuplua_register_cb(L, "MOUSECLICK_CB", (lua_CFunction)cells_mouseclick_cb, NULL); + iuplua_register_cb(L, "NCOLS_CB", (lua_CFunction)cells_ncols_cb, NULL); + iuplua_register_cb(L, "NLINES_CB", (lua_CFunction)cells_nlines_cb, NULL); + iuplua_register_cb(L, "SCROLLING_CB", (lua_CFunction)cells_scrolling_cb, NULL); + iuplua_register_cb(L, "HEIGHT_CB", (lua_CFunction)cells_height_cb, NULL); + iuplua_register_cb(L, "HSPAN_CB", (lua_CFunction)cells_hspan_cb, NULL); + iuplua_register_cb(L, "VSPAN_CB", (lua_CFunction)cells_vspan_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/cells_be64.loh" +#else +#include "loh/cells_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/cells_le64w.loh" +#else +#include "loh/cells_le64.loh" +#endif +#else +#include "loh/cells.loh" +#endif +#endif +#else + iuplua_dofile(L, "cells.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_clipboard.c b/iup/srclua5/il_clipboard.c new file mode 100644 index 0000000..207b1b7 --- /dev/null +++ b/iup/srclua5/il_clipboard.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Clipboard(lua_State *L) +{ + Ihandle *ih = IupClipboard(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupclipboardlua_open(lua_State * L) +{ + iuplua_register(L, Clipboard, "Clipboard"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/clipboard_be64.loh" +#else +#include "loh/clipboard_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/clipboard_le64w.loh" +#else +#include "loh/clipboard_le64.loh" +#endif +#else +#include "loh/clipboard.loh" +#endif +#endif +#else + iuplua_dofile(L, "clipboard.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_colorbar.c b/iup/srclua5/il_colorbar.c new file mode 100755 index 0000000..15dc73e --- /dev/null +++ b/iup/srclua5/il_colorbar.c @@ -0,0 +1,87 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static int colorbar_switch_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "switch_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int colorbar_select_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "select_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static char * colorbar_cell_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "cell_cb"); + lua_pushnumber(L, p0); + return iuplua_call_rs(L, 1); +} + +static int colorbar_extended_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "extended_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int Colorbar(lua_State *L) +{ + Ihandle *ih = IupColorbar(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupcolorbarlua_open(lua_State * L) +{ + iuplua_register(L, Colorbar, "Colorbar"); + + iuplua_register_cb(L, "SWITCH_CB", (lua_CFunction)colorbar_switch_cb, NULL); + iuplua_register_cb(L, "SELECT_CB", (lua_CFunction)colorbar_select_cb, NULL); + iuplua_register_cb(L, "CELL_CB", (lua_CFunction)colorbar_cell_cb, NULL); + iuplua_register_cb(L, "EXTENDED_CB", (lua_CFunction)colorbar_extended_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/colorbar_be64.loh" +#else +#include "loh/colorbar_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/colorbar_le64w.loh" +#else +#include "loh/colorbar_le64.loh" +#endif +#else +#include "loh/colorbar.loh" +#endif +#endif +#else + iuplua_dofile(L, "colorbar.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_colorbrowser.c b/iup/srclua5/il_colorbrowser.c new file mode 100755 index 0000000..f0316dd --- /dev/null +++ b/iup/srclua5/il_colorbrowser.c @@ -0,0 +1,73 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static int colorbrowser_drag_cb(Ihandle *self, unsigned char p0, unsigned char p1, unsigned char p2) +{ + lua_State *L = iuplua_call_start(self, "drag_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int colorbrowser_change_cb(Ihandle *self, unsigned char p0, unsigned char p1, unsigned char p2) +{ + lua_State *L = iuplua_call_start(self, "change_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int ColorBrowser(lua_State *L) +{ + Ihandle *ih = IupColorBrowser(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupcolorbrowserlua_open(lua_State * L) +{ + iuplua_register(L, ColorBrowser, "ColorBrowser"); + + iuplua_register_cb(L, "DRAG_CB", (lua_CFunction)colorbrowser_drag_cb, NULL); + iuplua_register_cb(L, "CHANGE_CB", (lua_CFunction)colorbrowser_change_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/colorbrowser_be64.loh" +#else +#include "loh/colorbrowser_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/colorbrowser_le64w.loh" +#else +#include "loh/colorbrowser_le64.loh" +#endif +#else +#include "loh/colorbrowser.loh" +#endif +#endif +#else + iuplua_dofile(L, "colorbrowser.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_colordlg.c b/iup/srclua5/il_colordlg.c new file mode 100755 index 0000000..c474c62 --- /dev/null +++ b/iup/srclua5/il_colordlg.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 ColorDlg(lua_State *L) +{ + Ihandle *ih = IupColorDlg(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupcolordlglua_open(lua_State * L) +{ + iuplua_register(L, ColorDlg, "ColorDlg"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/colordlg_be64.loh" +#else +#include "loh/colordlg_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/colordlg_le64w.loh" +#else +#include "loh/colordlg_le64.loh" +#endif +#else +#include "loh/colordlg.loh" +#endif +#endif +#else + iuplua_dofile(L, "colordlg.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_controls.h b/iup/srclua5/il_controls.h new file mode 100755 index 0000000..ab0aa67 --- /dev/null +++ b/iup/srclua5/il_controls.h @@ -0,0 +1,26 @@ +/** \file + * \brief IUPLua5 Controls internal Functions + * + * See Copyright Notice in "iup.h" + */ + +#ifndef __IL_CONTROLS_H +#define __IL_CONTROLS_H + +#ifdef __cplusplus +extern "C" { +#endif + +void iupmasklua_open (lua_State * L); +int iupgaugelua_open (lua_State * L); +int iupdiallua_open (lua_State * L); +int iupcolorbrowserlua_open (lua_State * L); +int iupcolorbarlua_open (lua_State * L); +int iupcellslua_open (lua_State * L); +int iupmatrixlua_open (lua_State * L); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/iup/srclua5/il_dial.c b/iup/srclua5/il_dial.c new file mode 100755 index 0000000..76a395a --- /dev/null +++ b/iup/srclua5/il_dial.c @@ -0,0 +1,61 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static int dial_mousemove_cb(Ihandle *self, double p0) +{ + lua_State *L = iuplua_call_start(self, "mousemove_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int Dial(lua_State *L) +{ + Ihandle *ih = IupDial((char *) luaL_checkstring(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupdiallua_open(lua_State * L) +{ + iuplua_register(L, Dial, "Dial"); + + iuplua_register_cb(L, "MOUSEMOVE_CB", (lua_CFunction)dial_mousemove_cb, "dial"); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/dial_be64.loh" +#else +#include "loh/dial_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/dial_le64w.loh" +#else +#include "loh/dial_le64.loh" +#endif +#else +#include "loh/dial.loh" +#endif +#endif +#else + iuplua_dofile(L, "dial.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_dialog.c b/iup/srclua5/il_dialog.c new file mode 100755 index 0000000..fafc5bd --- /dev/null +++ b/iup/srclua5/il_dialog.c @@ -0,0 +1,111 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 dialog_move_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "move_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int dialog_map_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "map_cb"); + return iuplua_call(L, 0); +} + +static int dialog_unmap_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "unmap_cb"); + return iuplua_call(L, 0); +} + +static int dialog_dropfiles_cb(Ihandle *self, char * p0, int p1, int p2, int p3) +{ + lua_State *L = iuplua_call_start(self, "dropfiles_cb"); + lua_pushstring(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + return iuplua_call(L, 4); +} + +static int dialog_show_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "show_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int dialog_trayclick_cb(Ihandle *self, int p0, int p1, int p2) +{ + lua_State *L = iuplua_call_start(self, "trayclick_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int dialog_close_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "close_cb"); + return iuplua_call(L, 0); +} + +static int Dialog(lua_State *L) +{ + Ihandle *ih = IupDialog(iuplua_checkihandleornil(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupdialoglua_open(lua_State * L) +{ + iuplua_register(L, Dialog, "Dialog"); + + iuplua_register_cb(L, "MOVE_CB", (lua_CFunction)dialog_move_cb, NULL); + iuplua_register_cb(L, "MAP_CB", (lua_CFunction)dialog_map_cb, NULL); + iuplua_register_cb(L, "UNMAP_CB", (lua_CFunction)dialog_unmap_cb, NULL); + iuplua_register_cb(L, "DROPFILES_CB", (lua_CFunction)dialog_dropfiles_cb, NULL); + iuplua_register_cb(L, "SHOW_CB", (lua_CFunction)dialog_show_cb, NULL); + iuplua_register_cb(L, "TRAYCLICK_CB", (lua_CFunction)dialog_trayclick_cb, NULL); + iuplua_register_cb(L, "CLOSE_CB", (lua_CFunction)dialog_close_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/dialog_be64.loh" +#else +#include "loh/dialog_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/dialog_le64w.loh" +#else +#include "loh/dialog_le64.loh" +#endif +#else +#include "loh/dialog.loh" +#endif +#endif +#else + iuplua_dofile(L, "dialog.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_filedlg.c b/iup/srclua5/il_filedlg.c new file mode 100755 index 0000000..fc30ca7 --- /dev/null +++ b/iup/srclua5/il_filedlg.c @@ -0,0 +1,61 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 filedlg_file_cb(Ihandle *self, char * p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "file_cb"); + lua_pushstring(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int FileDlg(lua_State *L) +{ + Ihandle *ih = IupFileDlg(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupfiledlglua_open(lua_State * L) +{ + iuplua_register(L, FileDlg, "FileDlg"); + + iuplua_register_cb(L, "FILE_CB", (lua_CFunction)filedlg_file_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/filedlg_be64.loh" +#else +#include "loh/filedlg_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/filedlg_le64w.loh" +#else +#include "loh/filedlg_le64.loh" +#endif +#else +#include "loh/filedlg.loh" +#endif +#endif +#else + iuplua_dofile(L, "filedlg.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_fill.c b/iup/srclua5/il_fill.c new file mode 100755 index 0000000..d3ebd0d --- /dev/null +++ b/iup/srclua5/il_fill.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Fill(lua_State *L) +{ + Ihandle *ih = IupFill(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupfilllua_open(lua_State * L) +{ + iuplua_register(L, Fill, "Fill"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/fill_be64.loh" +#else +#include "loh/fill_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/fill_le64w.loh" +#else +#include "loh/fill_le64.loh" +#endif +#else +#include "loh/fill.loh" +#endif +#endif +#else + iuplua_dofile(L, "fill.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_fontdlg.c b/iup/srclua5/il_fontdlg.c new file mode 100755 index 0000000..2be7c65 --- /dev/null +++ b/iup/srclua5/il_fontdlg.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 FontDlg(lua_State *L) +{ + Ihandle *ih = IupFontDlg(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupfontdlglua_open(lua_State * L) +{ + iuplua_register(L, FontDlg, "FontDlg"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/fontdlg_be64.loh" +#else +#include "loh/fontdlg_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/fontdlg_le64w.loh" +#else +#include "loh/fontdlg_le64.loh" +#endif +#else +#include "loh/fontdlg.loh" +#endif +#endif +#else + iuplua_dofile(L, "fontdlg.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_frame.c b/iup/srclua5/il_frame.c new file mode 100755 index 0000000..9b122ce --- /dev/null +++ b/iup/srclua5/il_frame.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Frame(lua_State *L) +{ + Ihandle *ih = IupFrame(iuplua_checkihandle(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupframelua_open(lua_State * L) +{ + iuplua_register(L, Frame, "Frame"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/frame_be64.loh" +#else +#include "loh/frame_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/frame_le64w.loh" +#else +#include "loh/frame_le64.loh" +#endif +#else +#include "loh/frame.loh" +#endif +#endif +#else + iuplua_dofile(L, "frame.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_gauge.c b/iup/srclua5/il_gauge.c new file mode 100755 index 0000000..402e78a --- /dev/null +++ b/iup/srclua5/il_gauge.c @@ -0,0 +1,53 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static int Gauge(lua_State *L) +{ + Ihandle *ih = IupGauge(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupgaugelua_open(lua_State * L) +{ + iuplua_register(L, Gauge, "Gauge"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/gauge_be64.loh" +#else +#include "loh/gauge_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/gauge_le64w.loh" +#else +#include "loh/gauge_le64.loh" +#endif +#else +#include "loh/gauge.loh" +#endif +#endif +#else + iuplua_dofile(L, "gauge.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_getcolor.c b/iup/srclua5/il_getcolor.c new file mode 100755 index 0000000..d468d38 --- /dev/null +++ b/iup/srclua5/il_getcolor.c @@ -0,0 +1,46 @@ +/** \file + * \brief IupGetColor bindig to Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" + +#include "iuplua.h" +#include "il.h" +#include "il_controls.h" + + +static int GetColor(lua_State *L) +{ + int x = (int)luaL_checknumber(L,1); + int y = (int)luaL_checknumber(L,2); + unsigned char r = (unsigned char) luaL_optnumber(L,3,0); + unsigned char g = (unsigned char) luaL_optnumber(L,4,0); + unsigned char b = (unsigned char) luaL_optnumber(L,5,0); + int ret = IupGetColor(x,y,&r,&g,&b); + if (ret) + { + lua_pushnumber(L, (int) r); + lua_pushnumber(L, (int) g); + lua_pushnumber(L, (int) b); + return 3; + } + else + { + lua_pushnil(L); + return 1; + } +} +int iupgclua_open(lua_State * L) +{ + lua_pushcfunction(L, GetColor); + lua_setglobal(L, "GetColor"); + return 0; +} + diff --git a/iup/srclua5/il_getparam.c b/iup/srclua5/il_getparam.c new file mode 100755 index 0000000..c7f4936 --- /dev/null +++ b/iup/srclua5/il_getparam.c @@ -0,0 +1,177 @@ +/** \file + * \brief IupGetParam bindig to Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <stdlib.h> +#include <string.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" + +#include "iuplua.h" +#include "il.h" +#include "il_controls.h" + + +/* Used only by the Lua binding */ +int iupGetParamCount(const char *format, int *param_extra); +char iupGetParamType(const char* format, int *line_size); + + +typedef struct _getparam_data +{ + lua_State *L; + int has_func; + int func_ref; +}getparam_data; + +static int param_action(Ihandle* dialog, int param_index, void* user_data) +{ + int ret = 1; + getparam_data* gp = (getparam_data*)user_data; + if (gp->has_func) + { + lua_State *L = gp->L; + lua_getref(L, gp->func_ref); + iuplua_pushihandle(L, dialog); + lua_pushnumber(L, param_index); + if (iuplua_call_raw(L, 2, 1) != 0) /* 2 args, 1 return */ + { + ret = (int)lua_tonumber(L,-1); + lua_pop(L, 1); + } + } + return ret; +} + +static int GetParam(lua_State *L) +{ + getparam_data gp; + const char* title = luaL_checkstring(L, 1); + void* user_data = (void*)&gp; + const char* format = luaL_checkstring(L, 3); + int param_count, param_extra, i, size, ret, + line_size = 0, lua_param_start = 4; + const char* f = format; + const char* s; + void* param_data[50]; + char param_type[50]; + + gp.L = L; + gp.has_func = 0; + gp.func_ref = 0; + + memset(param_data, 0, sizeof(void*)*50); + memset(param_type, 0, sizeof(char)*50); + + param_count = iupGetParamCount(format, ¶m_extra); + + for (i = 0; i < param_count; i++) + { + char t = iupGetParamType(f, &line_size); + + if (t == 't') /* if separator */ + { + f += line_size; + i--; /* compensate next increment */ + continue; + } + + switch(t) + { + case 'b': + case 'i': + case 'l': + param_data[i] = malloc(sizeof(int)); + *(int*)(param_data[i]) = (int)luaL_checknumber(L, lua_param_start); lua_param_start++; + break; + case 'a': + case 'r': + param_data[i] = malloc(sizeof(float)); + *(float*)(param_data[i]) = (float)luaL_checknumber(L, lua_param_start); lua_param_start++; + break; + case 's': + case 'm': + s = luaL_checkstring(L, lua_param_start); lua_param_start++; + size = strlen(s); + if (size < 512) + param_data[i] = malloc(512); + else + param_data[i] = malloc(2*size); + memcpy(param_data[i], s, size+1); + break; + } + + param_type[i] = t; + f += line_size; + } + + if (lua_isfunction(L, 2)) + { + lua_pushvalue(L, 2); + gp.func_ref = lua_ref(L, 1); + gp.has_func = 1; + } + + ret = IupGetParamv(title, param_action, user_data, format, param_count, param_extra, param_data); + + lua_pushboolean(L, ret); + + if (ret) + { + for (i = 0; i < param_count; i++) + { + switch(param_type[i]) + { + case 'b': + case 'i': + case 'l': + lua_pushnumber(L, *(int*)(param_data[i])); + break; + case 'a': + case 'r': + lua_pushnumber(L, *(float*)(param_data[i])); + break; + case 's': + case 'm': + lua_pushstring(L, (char*)(param_data[i])); + break; + } + } + } + + for (i = 0; i < param_count; i++) + { + free(param_data[i]); + } + + if (gp.has_func) + lua_unref(L, gp.func_ref); + + if (ret) + return param_count+1; + else + return 1; +} + +static int GetParamParam(lua_State *L) +{ + Ihandle *dialog = iuplua_checkihandle(L, 1); + int param_index = (int)luaL_checknumber(L, 2); + Ihandle* param; + char param_str[50]; + sprintf(param_str, "PARAM%d", param_index); + param = (Ihandle*)IupGetAttribute(dialog, param_str); + iuplua_pushihandle(L, param); + return 1; +} + +void iupgetparamlua_open(lua_State * L) +{ + iuplua_register(L, GetParam, "GetParam"); + iuplua_register(L, GetParamParam, "GetParamParam"); +} diff --git a/iup/srclua5/il_glcanvas.c b/iup/srclua5/il_glcanvas.c new file mode 100755 index 0000000..9f0dfb6 --- /dev/null +++ b/iup/srclua5/il_glcanvas.c @@ -0,0 +1,90 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupgl.h" +#include "il.h" + + +static int glcanvas_action(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "action"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int GLCanvas(lua_State *L) +{ + Ihandle *ih = IupGLCanvas(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +void iuplua_glcanvasfuncs_open(lua_State *L); + +int iupglcanvaslua_open(lua_State * L) +{ + iuplua_register(L, GLCanvas, "GLCanvas"); + + iuplua_register_cb(L, "ACTION", (lua_CFunction)glcanvas_action, "glcanvas"); + + iuplua_glcanvasfuncs_open(L); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/glcanvas_be64.loh" +#else +#include "loh/glcanvas_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/glcanvas_le64w.loh" +#else +#include "loh/glcanvas_le64.loh" +#endif +#else +#include "loh/glcanvas.loh" +#endif +#endif +#else + iuplua_dofile(L, "glcanvas.lua"); +#endif + + return 0; +} + + +int iupgllua_open(lua_State * L) +{ + if (iuplua_opencall_internal(L)) + IupGLCanvasOpen(); + + iuplua_changeEnv(L); + iupglcanvaslua_open(L); + iuplua_returnEnv(L); + return 0; +} + +/* obligatory to use require"iupluagl" */ +int luaopen_iupluagl(lua_State* L) +{ + return iupgllua_open(L); +} + +/* obligatory to use require"iupluagl51" */ +int luaopen_iupluagl51(lua_State* L) +{ + return iupgllua_open(L); +} + diff --git a/iup/srclua5/il_hbox.c b/iup/srclua5/il_hbox.c new file mode 100755 index 0000000..5734540 --- /dev/null +++ b/iup/srclua5/il_hbox.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Hbox(lua_State *L) +{ + Ihandle *ih = IupHbox(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iuphboxlua_open(lua_State * L) +{ + iuplua_register(L, Hbox, "Hbox"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/hbox_be64.loh" +#else +#include "loh/hbox_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/hbox_le64w.loh" +#else +#include "loh/hbox_le64.loh" +#endif +#else +#include "loh/hbox.loh" +#endif +#endif +#else + iuplua_dofile(L, "hbox.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_image.c b/iup/srclua5/il_image.c new file mode 100755 index 0000000..b140855 --- /dev/null +++ b/iup/srclua5/il_image.c @@ -0,0 +1,119 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Image (lua_State * L) +{ + int w, h, c, num_colors; + unsigned char *pixels; + Ihandle* ih; + char str[20]; + + if (lua_istable(L, 1)) + { + int i, j; + + /* get the number of lines */ + h = luaL_getn(L, 1); + + /* get the number of columns of the first line */ + lua_pushnumber(L, 1); + lua_gettable(L, 1); + w = luaL_getn(L, -1); + lua_pop(L, 1); + + pixels = (unsigned char *) malloc (h*w); + + for (i=1; i<=h; i++) + { + lua_pushnumber(L, i); + lua_gettable(L, 1); + for (j=1; j<=w; j++) + { + int idx = (i-1)*w+(j-1); + lua_pushnumber(L, j); + lua_gettable(L, -2); + pixels[idx] = (unsigned char)lua_tonumber(L, -1); + lua_pop(L, 1); + } + lua_pop(L, 1); + } + + ih = IupImage(w,h,pixels); + free(pixels); + + num_colors = luaL_getn(L, 2); + num_colors = num_colors>255? 255: num_colors; + for(c=1; c<=num_colors; c++) + { + lua_rawgeti(L, 2, c); + sprintf(str, "%d", c); + IupStoreAttribute(ih, str, lua_tostring(L,-1)); + lua_pop(L, 1); + } + } + else + { + w = luaL_checkint(L, 1); + h = luaL_checkint(L, 2); + pixels = iuplua_checkuchar_array(L, 3, w*h); + ih = IupImage(w, h, pixels); + free(pixels); + + num_colors = luaL_getn(L, 4); + num_colors = num_colors>256? 256: num_colors; + for(c=1; c<=num_colors; c++) + { + lua_rawgeti(L, 4, c); + sprintf(str, "%d", c-1); + IupStoreAttribute(ih, str, lua_tostring(L,-1)); + lua_pop(L, 1); + } + } + + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupimagelua_open(lua_State * L) +{ + iuplua_register(L, Image, "Image"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/image_be64.loh" +#else +#include "loh/image_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/image_le64w.loh" +#else +#include "loh/image_le64.loh" +#endif +#else +#include "loh/image.loh" +#endif +#endif +#else + iuplua_dofile(L, "image.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_imagergb.c b/iup/srclua5/il_imagergb.c new file mode 100755 index 0000000..f9d0318 --- /dev/null +++ b/iup/srclua5/il_imagergb.c @@ -0,0 +1,57 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 ImageRGB(lua_State *L) +{ + int w = luaL_checkint(L, 1); + int h = luaL_checkint(L, 2); + unsigned char *pixels = iuplua_checkuchar_array(L, 3, w*h*3); + Ihandle *ih = IupImageRGB(w, h, pixels); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + free(pixels); + return 1; +} + +int iupimagergblua_open(lua_State * L) +{ + iuplua_register(L, ImageRGB, "ImageRGB"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/imagergb_be64.loh" +#else +#include "loh/imagergb_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/imagergb_le64w.loh" +#else +#include "loh/imagergb_le64.loh" +#endif +#else +#include "loh/imagergb.loh" +#endif +#endif +#else + iuplua_dofile(L, "imagergb.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_imagergba.c b/iup/srclua5/il_imagergba.c new file mode 100755 index 0000000..4b67620 --- /dev/null +++ b/iup/srclua5/il_imagergba.c @@ -0,0 +1,57 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 ImageRGBA(lua_State *L) +{ + int w = luaL_checkint(L, 1); + int h = luaL_checkint(L, 2); + unsigned char *pixels = iuplua_checkuchar_array(L, 3, w*h*4); + Ihandle *ih = IupImageRGBA(w, h, pixels); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + free(pixels); + return 1; +} + +int iupimagergbalua_open(lua_State * L) +{ + iuplua_register(L, ImageRGBA, "ImageRGBA"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/imagergba_be64.loh" +#else +#include "loh/imagergba_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/imagergba_le64w.loh" +#else +#include "loh/imagergba_le64.loh" +#endif +#else +#include "loh/imagergba.loh" +#endif +#endif +#else + iuplua_dofile(L, "imagergba.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_item.c b/iup/srclua5/il_item.c new file mode 100755 index 0000000..401bf6e --- /dev/null +++ b/iup/srclua5/il_item.c @@ -0,0 +1,66 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 item_action(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "action"); + return iuplua_call(L, 0); +} + +static int item_highlight_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "highlight_cb"); + return iuplua_call(L, 0); +} + +static int Item(lua_State *L) +{ + Ihandle *ih = IupItem((char *) luaL_optstring(L, 1, NULL), NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupitemlua_open(lua_State * L) +{ + iuplua_register(L, Item, "Item"); + + iuplua_register_cb(L, "ACTION", (lua_CFunction)item_action, "item"); + iuplua_register_cb(L, "HIGHLIGHT_CB", (lua_CFunction)item_highlight_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/item_be64.loh" +#else +#include "loh/item_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/item_le64w.loh" +#else +#include "loh/item_le64.loh" +#endif +#else +#include "loh/item.loh" +#endif +#endif +#else + iuplua_dofile(L, "item.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_label.c b/iup/srclua5/il_label.c new file mode 100755 index 0000000..bd4a276 --- /dev/null +++ b/iup/srclua5/il_label.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Label(lua_State *L) +{ + Ihandle *ih = IupLabel((char *) luaL_optstring(L, 1, NULL)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iuplabellua_open(lua_State * L) +{ + iuplua_register(L, Label, "Label"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/label_be64.loh" +#else +#include "loh/label_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/label_le64w.loh" +#else +#include "loh/label_le64.loh" +#endif +#else +#include "loh/label.loh" +#endif +#endif +#else + iuplua_dofile(L, "label.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_list.c b/iup/srclua5/il_list.c new file mode 100755 index 0000000..ac1dc2f --- /dev/null +++ b/iup/srclua5/il_list.c @@ -0,0 +1,96 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 list_dropdown_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "dropdown_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int list_action(Ihandle *self, char * p0, int p1, int p2) +{ + lua_State *L = iuplua_call_start(self, "action"); + lua_pushstring(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int list_dblclick_cb(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "dblclick_cb"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int list_edit_cb(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "edit_cb"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int list_multiselect_cb(Ihandle *self, char * p0) +{ + lua_State *L = iuplua_call_start(self, "multiselect_cb"); + lua_pushstring(L, p0); + return iuplua_call(L, 1); +} + +static int List(lua_State *L) +{ + Ihandle *ih = IupList(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iuplistlua_open(lua_State * L) +{ + iuplua_register(L, List, "List"); + + iuplua_register_cb(L, "DROPDOWN_CB", (lua_CFunction)list_dropdown_cb, NULL); + iuplua_register_cb(L, "ACTION", (lua_CFunction)list_action, "list"); + iuplua_register_cb(L, "DBLCLICK_CB", (lua_CFunction)list_dblclick_cb, NULL); + iuplua_register_cb(L, "EDIT_CB", (lua_CFunction)list_edit_cb, "list"); + iuplua_register_cb(L, "MULTISELECT_CB", (lua_CFunction)list_multiselect_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/list_be64.loh" +#else +#include "loh/list_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/list_le64w.loh" +#else +#include "loh/list_le64.loh" +#endif +#else +#include "loh/list.loh" +#endif +#endif +#else + iuplua_dofile(L, "list.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_mask.c b/iup/srclua5/il_mask.c new file mode 100755 index 0000000..f471242 --- /dev/null +++ b/iup/srclua5/il_mask.c @@ -0,0 +1,132 @@ +/** \file + * \brief iupmask binding for Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iupmask.h" + +#include "iuplua.h" +#include "il.h" +#include "il_controls.h" + + +static int cfMaskRemove (lua_State *L) +{ + iupmaskRemove(iuplua_checkihandle(L,1)); + return 0; +} + +static int cfMaskMatRemove(lua_State *L) +{ + iupmaskMatRemove(iuplua_checkihandle(L,1), + luaL_checkint(L,2), + luaL_checkint(L,3)); + return 0; +} + +static int cfMaskSet (lua_State *L) +{ + iupmaskSet(iuplua_checkihandle(L,1), + (char*)luaL_checkstring(L,2), + luaL_checkint(L,3), + luaL_checkint(L,4)); + return 0; +} + +static int cfMaskMatSet(lua_State *L) +{ + iupmaskMatSet(iuplua_checkihandle(L,1), + (char*)luaL_checkstring(L,2), + luaL_checkint(L,3), + luaL_checkint(L,4), + luaL_checkint(L,5), + luaL_checkint(L,6)); + return 0; +} + +static int cfMaskSetInt(lua_State *L) +{ + iupmaskSetInt(iuplua_checkihandle(L,1), + luaL_checkint(L,2), + luaL_checkint(L,3), + luaL_checkint(L,4)); + return 0; +} + +static int cfMaskSetFloat(lua_State *L) +{ + iupmaskSetFloat(iuplua_checkihandle(L,1), + luaL_checkint(L,2), + (float)luaL_checknumber(L,3), + (float)luaL_checknumber(L,4)); + return 0; +} + +static int cfMaskMatSetInt (lua_State *L) +{ + iupmaskMatSetInt(iuplua_checkihandle(L,1), + luaL_checkint(L,2), + luaL_checkint(L,3), + luaL_checkint(L,4), + luaL_checkint(L,5), + luaL_checkint(L,6)); + return 0; +} + +static int cfMaskMatSetFloat (lua_State *L) +{ + iupmaskMatSetFloat(iuplua_checkihandle(L,1), + luaL_checkint(L,2), + (float)luaL_checknumber(L,3), + (float)luaL_checknumber(L,4), + luaL_checkint(L,5), + luaL_checkint(L,6)); + return 0; +} + +static int cfMaskCheck (lua_State *L) +{ + iupmaskCheck(iuplua_checkihandle(L,1)); + return 0; +} + +static int cfMaskMatCheck (lua_State *L) +{ + iupmaskMatCheck(iuplua_checkihandle(L,1), + luaL_checkint(L,2), + luaL_checkint(L,3)); + return 0; +} + +static int match_cb (Ihandle *handle) +{ + lua_State *L = iuplua_call_start(handle, "match_cb"); + return iuplua_call(L, 0); +} + +void iupmasklua_open(lua_State *L) +{ + iuplua_regstring(L, IUP_MASK_FLOAT, "MASK_FLOAT"); + iuplua_regstring(L, IUP_MASK_UFLOAT, "MASK_UFLOAT"); + iuplua_regstring(L, IUP_MASK_EFLOAT, "MASK_EFLOAT"); + iuplua_regstring(L, IUP_MASK_INT, "MASK_INT"); + iuplua_regstring(L, IUP_MASK_UINT, "MASK_UINT"); + + iuplua_register(L, cfMaskRemove, "maskRemove"); + iuplua_register(L, cfMaskMatRemove, "maskMatRemove"); + iuplua_register(L, cfMaskSet, "maskSet"); + iuplua_register(L, cfMaskMatSet, "maskMatSet"); + iuplua_register(L, cfMaskSetInt, "maskSetInt"); + iuplua_register(L, cfMaskSetFloat, "maskSetFloat"); + iuplua_register(L, cfMaskMatSetInt, "maskMatSetInt"); + iuplua_register(L, cfMaskMatSetFloat, "maskMatSetFloat"); + iuplua_register(L, cfMaskCheck, "maskCheck"); + iuplua_register(L, cfMaskMatCheck, "maskMatCheck"); + + iuplua_register_cb(L, "MATCH_CB", (lua_CFunction)match_cb, NULL); +} diff --git a/iup/srclua5/il_matrix.c b/iup/srclua5/il_matrix.c new file mode 100755 index 0000000..e747536 --- /dev/null +++ b/iup/srclua5/il_matrix.c @@ -0,0 +1,247 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static char * matrix_font_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "font_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call_rs(L, 2); +} + +static int matrix_draw_cb(Ihandle *self, int p0, int p1, int p2, int p3, int p4, int p5, int p6) +{ + lua_State *L = iuplua_call_start(self, "draw_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushnumber(L, p4); + lua_pushnumber(L, p5); + lua_pushnumber(L, p6); + return iuplua_call(L, 7); +} + +static int matrix_edition_cb(Ihandle *self, int p0, int p1, int p2, int p3) +{ + lua_State *L = iuplua_call_start(self, "edition_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + return iuplua_call(L, 4); +} + +static int matrix_mark_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "mark_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_markedit_cb(Ihandle *self, int p0, int p1, int p2) +{ + lua_State *L = iuplua_call_start(self, "markedit_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int matrix_bgcolor_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "bgcolor_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static char * matrix_value_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "value_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call_rs(L, 2); +} + +static int matrix_dropselect_cb(Ihandle *self, int p0, int p1, Ihandle * p2, char * p3, int p4, int p5) +{ + lua_State *L = iuplua_call_start(self, "dropselect_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + iuplua_pushihandle(L, p2); + lua_pushstring(L, p3); + lua_pushnumber(L, p4); + lua_pushnumber(L, p5); + return iuplua_call(L, 6); +} + +static int matrix_drop_cb(Ihandle *self, Ihandle * p0, int p1, int p2) +{ + lua_State *L = iuplua_call_start(self, "drop_cb"); + iuplua_pushihandle(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int matrix_dropcheck_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "dropcheck_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_action_cb(Ihandle *self, int p0, int p1, int p2, int p3, char * p4) +{ + lua_State *L = iuplua_call_start(self, "action_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushstring(L, p4); + return iuplua_call(L, 5); +} + +static int matrix_enteritem_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "enteritem_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_leaveitem_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "leaveitem_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_scrolltop_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "scrolltop_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_fgcolor_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "fgcolor_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_release_cb(Ihandle *self, int p0, int p1, char * p2) +{ + lua_State *L = iuplua_call_start(self, "release_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushstring(L, p2); + return iuplua_call(L, 3); +} + +static int matrix_mousemove_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "mousemove_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int matrix_value_edit_cb(Ihandle *self, int p0, int p1, char * p2) +{ + lua_State *L = iuplua_call_start(self, "value_edit_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushstring(L, p2); + return iuplua_call(L, 3); +} + +static int matrix_click_cb(Ihandle *self, int p0, int p1, char * p2) +{ + lua_State *L = iuplua_call_start(self, "click_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushstring(L, p2); + return iuplua_call(L, 3); +} + +static int Matrix(lua_State *L) +{ + Ihandle *ih = IupMatrix(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +void iuplua_matrixfuncs_open(lua_State *L); + +int iupmatrixlua_open(lua_State * L) +{ + iuplua_register(L, Matrix, "Matrix"); + + iuplua_register_cb(L, "FONT_CB", (lua_CFunction)matrix_font_cb, NULL); + iuplua_register_cb(L, "DRAW_CB", (lua_CFunction)matrix_draw_cb, NULL); + iuplua_register_cb(L, "EDITION_CB", (lua_CFunction)matrix_edition_cb, NULL); + iuplua_register_cb(L, "MARK_CB", (lua_CFunction)matrix_mark_cb, NULL); + iuplua_register_cb(L, "MARKEDIT_CB", (lua_CFunction)matrix_markedit_cb, NULL); + iuplua_register_cb(L, "BGCOLOR_CB", (lua_CFunction)matrix_bgcolor_cb, NULL); + iuplua_register_cb(L, "VALUE_CB", (lua_CFunction)matrix_value_cb, NULL); + iuplua_register_cb(L, "DROPSELECT_CB", (lua_CFunction)matrix_dropselect_cb, NULL); + iuplua_register_cb(L, "DROP_CB", (lua_CFunction)matrix_drop_cb, NULL); + iuplua_register_cb(L, "DROPCHECK_CB", (lua_CFunction)matrix_dropcheck_cb, NULL); + iuplua_register_cb(L, "ACTION_CB", (lua_CFunction)matrix_action_cb, "matrix"); + iuplua_register_cb(L, "ENTERITEM_CB", (lua_CFunction)matrix_enteritem_cb, NULL); + iuplua_register_cb(L, "LEAVEITEM_CB", (lua_CFunction)matrix_leaveitem_cb, NULL); + iuplua_register_cb(L, "SCROLLTOP_CB", (lua_CFunction)matrix_scrolltop_cb, NULL); + iuplua_register_cb(L, "FGCOLOR_CB", (lua_CFunction)matrix_fgcolor_cb, NULL); + iuplua_register_cb(L, "RELEASE_CB", (lua_CFunction)matrix_release_cb, NULL); + iuplua_register_cb(L, "MOUSEMOVE_CB", (lua_CFunction)matrix_mousemove_cb, "matrix"); + iuplua_register_cb(L, "VALUE_EDIT_CB", (lua_CFunction)matrix_value_edit_cb, NULL); + iuplua_register_cb(L, "CLICK_CB", (lua_CFunction)matrix_click_cb, NULL); + + iuplua_matrixfuncs_open(L); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/matrix_be64.loh" +#else +#include "loh/matrix_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/matrix_le64w.loh" +#else +#include "loh/matrix_le64.loh" +#endif +#else +#include "loh/matrix.loh" +#endif +#endif +#else + iuplua_dofile(L, "matrix.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_matrix_aux.c b/iup/srclua5/il_matrix_aux.c new file mode 100755 index 0000000..240c837 --- /dev/null +++ b/iup/srclua5/il_matrix_aux.c @@ -0,0 +1,85 @@ +/** \file + * \brief matrix binding for Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iupcontrols.h" +#include <cd.h> +#include <cdlua.h> + +#include "iuplua.h" +#include "il.h" +#include "il_controls.h" + +static int matrix_draw_cb(Ihandle *self, int p0, int p1, int p2, int p3, int p4, int p5, cdCanvas* cnv) +{ + lua_State *L = iuplua_call_start(self, "draw_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushnumber(L, p4); + lua_pushnumber(L, p5); + cdlua_pushcanvas(L, cnv); + return iuplua_call(L, 7); +} + +static int matrix_bgcolor_cb(Ihandle *self, int p0, int p1, unsigned int *p2, unsigned int *p3, unsigned int *p4) +{ + int ret; + lua_State *L = iuplua_call_start(self, "bgcolor_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + ret = iuplua_call_raw(L, 2+2, LUA_MULTRET); /* 2 args + 2 args(errormsg, handle), variable number of returns */ + if (ret || lua_isnil(L, -1)) + return IUP_DEFAULT; + ret = (int)lua_tonumber(L,-1); + + if (ret == IUP_IGNORE) + { + lua_pop(L, 1); + return IUP_IGNORE; + } + + *p2 = (unsigned int)lua_tonumber(L, -4); + *p3 = (unsigned int)lua_tonumber(L, -3); + *p4 = (unsigned int)lua_tonumber(L, -2); + lua_pop(L, 1); + return IUP_DEFAULT; +} + +static int matrix_fgcolor_cb(Ihandle *self, int p0, int p1, unsigned int *p2, unsigned int *p3, unsigned int *p4) +{ + int ret; + lua_State *L = iuplua_call_start(self, "fgcolor_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + ret = iuplua_call_raw(L, 2+2, LUA_MULTRET); /* 2 args + 2 args(errormsg, handle), variable number of returns */ + if (ret || lua_isnil(L, -1)) + return IUP_DEFAULT; + ret = (int)lua_tonumber(L,-1); + + if (ret == IUP_IGNORE) + { + lua_pop(L, 1); + return IUP_IGNORE; + } + + *p2 = (unsigned int)lua_tonumber(L, -4); + *p3 = (unsigned int)lua_tonumber(L, -3); + *p4 = (unsigned int)lua_tonumber(L, -2); + lua_pop(L, 1); + return IUP_DEFAULT; +} + +void iuplua_matrixfuncs_open (lua_State *L) +{ + iuplua_register_cb(L, "BGCOLOR_CB", (lua_CFunction)matrix_bgcolor_cb, NULL); + iuplua_register_cb(L, "FGCOLOR_CB", (lua_CFunction)matrix_fgcolor_cb, NULL); + iuplua_register_cb(L, "DRAW_CB", (lua_CFunction)matrix_draw_cb, NULL); +} diff --git a/iup/srclua5/il_menu.c b/iup/srclua5/il_menu.c new file mode 100755 index 0000000..e8eede7 --- /dev/null +++ b/iup/srclua5/il_menu.c @@ -0,0 +1,66 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 menu_open_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "open_cb"); + return iuplua_call(L, 0); +} + +static int menu_menuclose_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "menuclose_cb"); + return iuplua_call(L, 0); +} + +static int Menu(lua_State *L) +{ + Ihandle *ih = IupMenu(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupmenulua_open(lua_State * L) +{ + iuplua_register(L, Menu, "Menu"); + + iuplua_register_cb(L, "OPEN_CB", (lua_CFunction)menu_open_cb, NULL); + iuplua_register_cb(L, "MENUCLOSE_CB", (lua_CFunction)menu_menuclose_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/menu_be64.loh" +#else +#include "loh/menu_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/menu_le64w.loh" +#else +#include "loh/menu_le64.loh" +#endif +#else +#include "loh/menu.loh" +#endif +#endif +#else + iuplua_dofile(L, "menu.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_messagedlg.c b/iup/srclua5/il_messagedlg.c new file mode 100755 index 0000000..fb1047d --- /dev/null +++ b/iup/srclua5/il_messagedlg.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 MessageDlg(lua_State *L) +{ + Ihandle *ih = IupMessageDlg(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupmessagedlglua_open(lua_State * L) +{ + iuplua_register(L, MessageDlg, "MessageDlg"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/messagedlg_be64.loh" +#else +#include "loh/messagedlg_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/messagedlg_le64w.loh" +#else +#include "loh/messagedlg_le64.loh" +#endif +#else +#include "loh/messagedlg.loh" +#endif +#endif +#else + iuplua_dofile(L, "messagedlg.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_multiline.c b/iup/srclua5/il_multiline.c new file mode 100755 index 0000000..9108e3f --- /dev/null +++ b/iup/srclua5/il_multiline.c @@ -0,0 +1,61 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 multiline_action(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "action"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int MultiLine(lua_State *L) +{ + Ihandle *ih = IupMultiLine(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupmultilinelua_open(lua_State * L) +{ + iuplua_register(L, MultiLine, "MultiLine"); + + iuplua_register_cb(L, "ACTION", (lua_CFunction)multiline_action, "multiline"); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/multiline_be64.loh" +#else +#include "loh/multiline_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/multiline_le64w.loh" +#else +#include "loh/multiline_le64.loh" +#endif +#else +#include "loh/multiline.loh" +#endif +#endif +#else + iuplua_dofile(L, "multiline.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_normalizer.c b/iup/srclua5/il_normalizer.c new file mode 100755 index 0000000..42097d8 --- /dev/null +++ b/iup/srclua5/il_normalizer.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Normalizer(lua_State *L) +{ + Ihandle *ih = IupNormalizer(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupnormalizerlua_open(lua_State * L) +{ + iuplua_register(L, Normalizer, "Normalizer"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/normalizer_be64.loh" +#else +#include "loh/normalizer_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/normalizer_le64w.loh" +#else +#include "loh/normalizer_le64.loh" +#endif +#else +#include "loh/normalizer.loh" +#endif +#endif +#else + iuplua_dofile(L, "normalizer.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_olecontrol.c b/iup/srclua5/il_olecontrol.c new file mode 100755 index 0000000..955b5da --- /dev/null +++ b/iup/srclua5/il_olecontrol.c @@ -0,0 +1,77 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupole.h" +#include "il.h" + + +static int OleControl(lua_State *L) +{ + Ihandle *ih = IupOleControl((char *) luaL_checkstring(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupolecontrollua_open(lua_State * L) +{ + iuplua_register(L, OleControl, "OleControl"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/olecontrol_be64.loh" +#else +#include "loh/olecontrol_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/olecontrol_le64w.loh" +#else +#include "loh/olecontrol_le64.loh" +#endif +#else +#include "loh/olecontrol.loh" +#endif +#endif +#else + iuplua_dofile(L, "olecontrol.lua"); +#endif + + return 0; +} + + +int iupolelua_open(lua_State* L) +{ + if (iuplua_opencall_internal(L)) + IupOleControlOpen(); + + iuplua_changeEnv(L); + iupolecontrollua_open(L); + iuplua_returnEnv(L); + return 0; +} + +/* obligatory to use require"iupluaole" */ +int luaopen_iupluaole(lua_State* L) +{ + return iupolelua_open(L); +} + +/* obligatory to use require"iupluaole51" */ +int luaopen_iupluaole51(lua_State* L) +{ + return iupolelua_open(L); +} + diff --git a/iup/srclua5/il_pplot.c b/iup/srclua5/il_pplot.c new file mode 100755 index 0000000..8929d33 --- /dev/null +++ b/iup/srclua5/il_pplot.c @@ -0,0 +1,151 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). Please don't change anything. * + *****************************************************************************/ + +#include <stdlib.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iup_pplot.h" +#include "il.h" + + +static int pplot_edit_cb(Ihandle *self, int p0, int p1, float p2, float p3, float p4, float p5) +{ + lua_State *L = iuplua_call_start(self, "edit_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushnumber(L, p4); + lua_pushnumber(L, p5); + return iuplua_call(L, 6); +} + +static int pplot_deleteend_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "deleteend_cb"); + return iuplua_call(L, 0); +} + +static int pplot_selectbegin_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "selectbegin_cb"); + return iuplua_call(L, 0); +} + +static int pplot_postdraw_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "postdraw_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int pplot_delete_cb(Ihandle *self, int p0, int p1, float p2, float p3) +{ + lua_State *L = iuplua_call_start(self, "delete_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + return iuplua_call(L, 4); +} + +static int pplot_predraw_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "predraw_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int pplot_selectend_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "selectend_cb"); + return iuplua_call(L, 0); +} + +static int pplot_select_cb(Ihandle *self, int p0, int p1, float p2, float p3, int p4) +{ + lua_State *L = iuplua_call_start(self, "select_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + lua_pushnumber(L, p4); + return iuplua_call(L, 5); +} + +static int pplot_deletebegin_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "deletebegin_cb"); + return iuplua_call(L, 0); +} + +static int pplot_editbegin_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "editbegin_cb"); + return iuplua_call(L, 0); +} + +static int pplot_editend_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "editend_cb"); + return iuplua_call(L, 0); +} + +static int PPlot(lua_State *L) +{ + Ihandle *ih = IupPPlot(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +void iuplua_pplotfuncs_open(lua_State *L); + +int iuppplotlua_open(lua_State * L) +{ + iuplua_register(L, PPlot, "PPlot"); + + iuplua_register_cb(L, "EDIT_CB", (lua_CFunction)pplot_edit_cb, "pplot"); + iuplua_register_cb(L, "DELETEEND_CB", (lua_CFunction)pplot_deleteend_cb, NULL); + iuplua_register_cb(L, "SELECTBEGIN_CB", (lua_CFunction)pplot_selectbegin_cb, NULL); + iuplua_register_cb(L, "POSTDRAW_CB", (lua_CFunction)pplot_postdraw_cb, NULL); + iuplua_register_cb(L, "DELETE_CB", (lua_CFunction)pplot_delete_cb, NULL); + iuplua_register_cb(L, "PREDRAW_CB", (lua_CFunction)pplot_predraw_cb, NULL); + iuplua_register_cb(L, "SELECTEND_CB", (lua_CFunction)pplot_selectend_cb, NULL); + iuplua_register_cb(L, "SELECT_CB", (lua_CFunction)pplot_select_cb, NULL); + iuplua_register_cb(L, "DELETEBEGIN_CB", (lua_CFunction)pplot_deletebegin_cb, NULL); + iuplua_register_cb(L, "EDITBEGIN_CB", (lua_CFunction)pplot_editbegin_cb, NULL); + iuplua_register_cb(L, "EDITEND_CB", (lua_CFunction)pplot_editend_cb, NULL); + + iuplua_pplotfuncs_open(L); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/pplot_be64.loh" +#else +#include "loh/pplot_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/pplot_le64w.loh" +#else +#include "loh/pplot_le64.loh" +#endif +#else +#include "loh/pplot.loh" +#endif +#endif +#else + iuplua_dofile(L, "pplot.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_progressbar.c b/iup/srclua5/il_progressbar.c new file mode 100755 index 0000000..5dc789e --- /dev/null +++ b/iup/srclua5/il_progressbar.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 ProgressBar(lua_State *L) +{ + Ihandle *ih = IupProgressBar(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupprogressbarlua_open(lua_State * L) +{ + iuplua_register(L, ProgressBar, "ProgressBar"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/progressbar_be64.loh" +#else +#include "loh/progressbar_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/progressbar_le64w.loh" +#else +#include "loh/progressbar_le64.loh" +#endif +#else +#include "loh/progressbar.loh" +#endif +#endif +#else + iuplua_dofile(L, "progressbar.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_radio.c b/iup/srclua5/il_radio.c new file mode 100755 index 0000000..ef05eef --- /dev/null +++ b/iup/srclua5/il_radio.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Radio(lua_State *L) +{ + Ihandle *ih = IupRadio(iuplua_checkihandle(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupradiolua_open(lua_State * L) +{ + iuplua_register(L, Radio, "Radio"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/radio_be64.loh" +#else +#include "loh/radio_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/radio_le64w.loh" +#else +#include "loh/radio_le64.loh" +#endif +#else +#include "loh/radio.loh" +#endif +#endif +#else + iuplua_dofile(L, "radio.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_sbox.c b/iup/srclua5/il_sbox.c new file mode 100755 index 0000000..9a2e6d5 --- /dev/null +++ b/iup/srclua5/il_sbox.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Sbox(lua_State *L) +{ + Ihandle *ih = IupSbox(iuplua_checkihandle(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupsboxlua_open(lua_State * L) +{ + iuplua_register(L, Sbox, "Sbox"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/sbox_be64.loh" +#else +#include "loh/sbox_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/sbox_le64w.loh" +#else +#include "loh/sbox_le64.loh" +#endif +#else +#include "loh/sbox.loh" +#endif +#endif +#else + iuplua_dofile(L, "sbox.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_scanf.c b/iup/srclua5/il_scanf.c new file mode 100755 index 0000000..6f035a7 --- /dev/null +++ b/iup/srclua5/il_scanf.c @@ -0,0 +1,197 @@ +/** \file + * \brief IUP binding for Lua 5. + * IupScanf special implementation. + * + * See Copyright Notice in "iup.h" + */ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" + +#include "il.h" + +#include "iup_str.h" +#include "iup_predial.h" + +#define ALLOC(n,t) ((t *)calloc((n),sizeof(t))) +#define REQUIRE(b) {if (!(b)) goto cleanup;} + +int iupluaScanf(lua_State *L) +{ + char *format; + int i; + int fields; + int *width = NULL; + int *scroll = NULL; + char **prompt = NULL; + char **text = NULL; + char *title = NULL; + char *s = NULL; + char *s1 = NULL; + char *outf = NULL; + int indParam; /* va_list va; */ + int total = 0; + + format = (char*)luaL_checkstring(L, 1); + fields = iupStrCountChar(format, '\n') - 1; + REQUIRE(fields > 0); + width = ALLOC(fields, int); + REQUIRE(width != NULL); + scroll = ALLOC(fields, int); + REQUIRE(scroll != NULL); + prompt = ALLOC(fields, char *); + REQUIRE(prompt != NULL); + text = ALLOC(fields, char *); + REQUIRE(text != NULL); + + indParam = 2; /* va_start(va,format); */ + REQUIRE((s1 = s = (char *) iupStrDup(format)) != NULL); + title = iupStrCopyUntil(&s, '\n'); + REQUIRE(title != NULL); + for (i = 0; i < fields; ++i) { + int n; + prompt[i] = iupStrCopyUntil(&s, '%'); + REQUIRE(prompt[i] != NULL); + n = sscanf(s, "%d.%d", width + i, scroll + i); + REQUIRE(n == 2); + s = strchr(s, '%'); + REQUIRE(s != NULL); + if (outf) free(outf); + outf = iupStrCopyUntil(&s, '\n'); + text[i] = ALLOC(width[i] + 1, char); + REQUIRE(text[i] != NULL); + + switch (s[-2]) { + case 'd': + case 'i': + case 'o': + case 'u': + case 'x': + case 'X': + if (s[-3] == 'l') + sprintf(text[i], outf, luaL_checklong(L, indParam++)); + else if (s[-3] == 'h') + sprintf(text[i], outf, (short) luaL_checkint(L, indParam++)); + else + sprintf(text[i], outf, luaL_checkint(L, indParam++)); + break; + case 'e': + case 'f': + case 'g': + case 'E': + case 'G': + if (s[-3] == 'l') + sprintf(text[i], outf, luaL_checknumber(L, indParam++)); + else + sprintf(text[i], outf, (float)luaL_checknumber(L, indParam++)); + break; + case 's': + sprintf(text[i], outf, (char *)luaL_checkstring(L, indParam++)); + break; + default: + goto cleanup; + } + } + /* va_end(va); */ + + REQUIRE(iupDataEntry(fields, width, scroll, title, prompt, text)>0); + + /* va_start(va,format); */ + s = strchr(format, '\n') + 1; + for (i = 0; i < fields; ++i) { + s = strchr(s, '\n') + 1; + switch (s[-2]) { + case 'd': + case 'u': + if (s[-3] == 'l') { + long l = 0; + sscanf(text[i], "%ld", &l); + lua_pushnumber(L, l); + total++; + } else if (s[-3] == 'h') { + short l = 0; + sscanf(text[i], "%hd", &l); + lua_pushnumber(L, l); + total++; + } else { + int l = 0; + sscanf(text[i], "%d", &l); + lua_pushnumber(L, l); + total++; + } + break; + case 'i': + case 'o': + case 'x': + case 'X': + if (s[-3] == 'l') { + long l = 0; + sscanf(text[i], "%li", &l); + lua_pushnumber(L, l); + total++; + } else if (s[-3] == 'h') { + short l = 0; + sscanf(text[i], "%hi", &l); + lua_pushnumber(L, l); + total++; + } else { + int l = 0; + sscanf(text[i], "%i", &l); + lua_pushnumber(L, l); + total++; + } + break; + case 'e': + case 'f': + case 'g': + case 'E': + case 'G': + if (s[-3] == 'l') { + double l = 0; + sscanf(text[i], "%lg", &l); + lua_pushnumber(L, l); + total++; + } else { + float l = 0; + sscanf(text[i], "%g", &l); + lua_pushnumber(L, l); + total++; + } + break; + case 's': + lua_pushstring(L, text[i]); + total++; + break; + } + } + /* va_end(va); */ + +cleanup: + if (s1) free(s1); + if (title) free(title); + if (width) free(width); + if (scroll) free(scroll); + if (outf) free(outf); + if (prompt) + { + for (i = 0; i < fields; ++i) + if (prompt[i]) free(prompt[i]); + free(prompt); + } + if (text) + { + for (i = 0; i < fields; ++i) + if (text[i]) free(text[i]); + free(text); + } + + return total; +} + diff --git a/iup/srclua5/il_separator.c b/iup/srclua5/il_separator.c new file mode 100755 index 0000000..cfd71b1 --- /dev/null +++ b/iup/srclua5/il_separator.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Separator(lua_State *L) +{ + Ihandle *ih = IupSeparator(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupseparatorlua_open(lua_State * L) +{ + iuplua_register(L, Separator, "Separator"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/separator_be64.loh" +#else +#include "loh/separator_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/separator_le64w.loh" +#else +#include "loh/separator_le64.loh" +#endif +#else +#include "loh/separator.loh" +#endif +#endif +#else + iuplua_dofile(L, "separator.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_spin.c b/iup/srclua5/il_spin.c new file mode 100755 index 0000000..c3e5439 --- /dev/null +++ b/iup/srclua5/il_spin.c @@ -0,0 +1,60 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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_pushnumber(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 +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/spin_be64.loh" +#else +#include "loh/spin_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/spin_le64w.loh" +#else +#include "loh/spin_le64.loh" +#endif +#else +#include "loh/spin.loh" +#endif +#endif +#else + iuplua_dofile(L, "spin.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_spinbox.c b/iup/srclua5/il_spinbox.c new file mode 100755 index 0000000..843154e --- /dev/null +++ b/iup/srclua5/il_spinbox.c @@ -0,0 +1,60 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 spinbox_spin_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "spin_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int Spinbox(lua_State *L) +{ + Ihandle *ih = IupSpinbox(iuplua_checkihandle(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupspinboxlua_open(lua_State * L) +{ + iuplua_register(L, Spinbox, "Spinbox"); + + iuplua_register_cb(L, "SPIN_CB", (lua_CFunction)spinbox_spin_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/spinbox_be64.loh" +#else +#include "loh/spinbox_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/spinbox_le64w.loh" +#else +#include "loh/spinbox_le64.loh" +#endif +#else +#include "loh/spinbox.loh" +#endif +#endif +#else + iuplua_dofile(L, "spinbox.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_submenu.c b/iup/srclua5/il_submenu.c new file mode 100755 index 0000000..b82dd4b --- /dev/null +++ b/iup/srclua5/il_submenu.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Submenu(lua_State *L) +{ + Ihandle *ih = IupSubmenu((char *) luaL_optstring(L, 1, NULL), iuplua_checkihandle(L, 2)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupsubmenulua_open(lua_State * L) +{ + iuplua_register(L, Submenu, "Submenu"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/submenu_be64.loh" +#else +#include "loh/submenu_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/submenu_le64w.loh" +#else +#include "loh/submenu_le64.loh" +#endif +#else +#include "loh/submenu.loh" +#endif +#endif +#else + iuplua_dofile(L, "submenu.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_tabs.c b/iup/srclua5/il_tabs.c new file mode 100755 index 0000000..09c68aa --- /dev/null +++ b/iup/srclua5/il_tabs.c @@ -0,0 +1,63 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 tabs_tabchange_cb(Ihandle *self, Ihandle * p0, Ihandle * p1) +{ + lua_State *L = iuplua_call_start(self, "tabchange_cb"); + iuplua_pushihandle(L, p0); + iuplua_pushihandle(L, p1); + return iuplua_call(L, 2); +} + +static int Tabsv(lua_State *L) +{ + Ihandle **hlist = iuplua_checkihandle_array(L, 1); + Ihandle *h = IupTabsv(hlist); + iuplua_plugstate(L, h); + iuplua_pushihandle_raw(L, h); + free(hlist); + return 1; +} + +int iuptabslua_open(lua_State * L) +{ + iuplua_register(L, Tabsv, "Tabsv"); + + iuplua_register_cb(L, "TABCHANGE_CB", (lua_CFunction)tabs_tabchange_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/tabs_be64.loh" +#else +#include "loh/tabs_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/tabs_le64w.loh" +#else +#include "loh/tabs_le64.loh" +#endif +#else +#include "loh/tabs.loh" +#endif +#endif +#else + iuplua_dofile(L, "tabs.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_text.c b/iup/srclua5/il_text.c new file mode 100755 index 0000000..f3751f2 --- /dev/null +++ b/iup/srclua5/il_text.c @@ -0,0 +1,78 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 text_caret_cb(Ihandle *self, int p0, int p1, int p2) +{ + lua_State *L = iuplua_call_start(self, "caret_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + return iuplua_call(L, 3); +} + +static int text_action(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "action"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int text_valuechanged_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "valuechanged_cb"); + return iuplua_call(L, 0); +} + +static int Text(lua_State *L) +{ + Ihandle *ih = IupText(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iuptextlua_open(lua_State * L) +{ + iuplua_register(L, Text, "Text"); + + iuplua_register_cb(L, "CARET_CB", (lua_CFunction)text_caret_cb, NULL); + iuplua_register_cb(L, "ACTION", (lua_CFunction)text_action, "text"); + iuplua_register_cb(L, "VALUECHANGED_CB", (lua_CFunction)text_valuechanged_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/text_be64.loh" +#else +#include "loh/text_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/text_le64w.loh" +#else +#include "loh/text_le64.loh" +#endif +#else +#include "loh/text.loh" +#endif +#endif +#else + iuplua_dofile(L, "text.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_timer.c b/iup/srclua5/il_timer.c new file mode 100755 index 0000000..b4845ee --- /dev/null +++ b/iup/srclua5/il_timer.c @@ -0,0 +1,59 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 timer_action_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "action_cb"); + return iuplua_call(L, 0); +} + +static int Timer(lua_State *L) +{ + Ihandle *ih = IupTimer(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iuptimerlua_open(lua_State * L) +{ + iuplua_register(L, Timer, "Timer"); + + iuplua_register_cb(L, "ACTION_CB", (lua_CFunction)timer_action_cb, "timer"); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/timer_be64.loh" +#else +#include "loh/timer_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/timer_le64w.loh" +#else +#include "loh/timer_le64.loh" +#endif +#else +#include "loh/timer.loh" +#endif +#endif +#else + iuplua_dofile(L, "timer.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_toggle.c b/iup/srclua5/il_toggle.c new file mode 100755 index 0000000..bea7099 --- /dev/null +++ b/iup/srclua5/il_toggle.c @@ -0,0 +1,60 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 toggle_action(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "action"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int Toggle(lua_State *L) +{ + Ihandle *ih = IupToggle((char *) luaL_optstring(L, 1, NULL), NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iuptogglelua_open(lua_State * L) +{ + iuplua_register(L, Toggle, "Toggle"); + + iuplua_register_cb(L, "ACTION", (lua_CFunction)toggle_action, "toggle"); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/toggle_be64.loh" +#else +#include "loh/toggle_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/toggle_le64w.loh" +#else +#include "loh/toggle_le64.loh" +#endif +#else +#include "loh/toggle.loh" +#endif +#endif +#else + iuplua_dofile(L, "toggle.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_tree.c b/iup/srclua5/il_tree.c new file mode 100755 index 0000000..a9eb407 --- /dev/null +++ b/iup/srclua5/il_tree.c @@ -0,0 +1,152 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 tree_branchopen_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "branchopen_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int tree_selection_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "selection_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int tree_dragdrop_cb(Ihandle *self, int p0, int p1, int p2, int p3) +{ + lua_State *L = iuplua_call_start(self, "dragdrop_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + return iuplua_call(L, 4); +} + +static int tree_rename_cb(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "rename_cb"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int tree_renamenode_cb(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "renamenode_cb"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int tree_showrename_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "showrename_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int tree_multiselection_cb(Ihandle *self, int p0, int p1) +{ + lua_State *L = iuplua_call_start(self, "multiselection_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int tree_branchclose_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "branchclose_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int tree_executeleaf_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "executeleaf_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int tree_rightclick_cb(Ihandle *self, int p0) +{ + lua_State *L = iuplua_call_start(self, "rightclick_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int tree_noderemoved_cb(Ihandle *self, int p0, char * p1) +{ + lua_State *L = iuplua_call_start(self, "noderemoved_cb"); + lua_pushnumber(L, p0); + lua_pushstring(L, p1); + return iuplua_call(L, 2); +} + +static int Tree(lua_State *L) +{ + Ihandle *ih = IupTree(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +void iuplua_treefuncs_open(lua_State *L); + +int iuptreelua_open(lua_State * L) +{ + iuplua_register(L, Tree, "Tree"); + + iuplua_register_cb(L, "BRANCHOPEN_CB", (lua_CFunction)tree_branchopen_cb, NULL); + iuplua_register_cb(L, "SELECTION_CB", (lua_CFunction)tree_selection_cb, NULL); + iuplua_register_cb(L, "DRAGDROP_CB", (lua_CFunction)tree_dragdrop_cb, NULL); + iuplua_register_cb(L, "RENAME_CB", (lua_CFunction)tree_rename_cb, NULL); + iuplua_register_cb(L, "RENAMENODE_CB", (lua_CFunction)tree_renamenode_cb, NULL); + iuplua_register_cb(L, "SHOWRENAME_CB", (lua_CFunction)tree_showrename_cb, NULL); + iuplua_register_cb(L, "MULTISELECTION_CB", (lua_CFunction)tree_multiselection_cb, NULL); + iuplua_register_cb(L, "BRANCHCLOSE_CB", (lua_CFunction)tree_branchclose_cb, NULL); + iuplua_register_cb(L, "EXECUTELEAF_CB", (lua_CFunction)tree_executeleaf_cb, NULL); + iuplua_register_cb(L, "RIGHTCLICK_CB", (lua_CFunction)tree_rightclick_cb, NULL); + iuplua_register_cb(L, "NODEREMOVED_CB", (lua_CFunction)tree_noderemoved_cb, NULL); + + iuplua_treefuncs_open(L); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/tree_be64.loh" +#else +#include "loh/tree_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/tree_le64w.loh" +#else +#include "loh/tree_le64.loh" +#endif +#else +#include "loh/tree.loh" +#endif +#endif +#else + iuplua_dofile(L, "tree.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_tree_aux.c b/iup/srclua5/il_tree_aux.c new file mode 100755 index 0000000..99e721b --- /dev/null +++ b/iup/srclua5/il_tree_aux.c @@ -0,0 +1,184 @@ +/** \file + * \brief iuptree binding for Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iupcontrols.h" + +#include "iuplua.h" +#include "il.h" +#include "il_controls.h" + +/* + The REGISTRY is used to store references to the associated Lua objects. + Given an ID, to retreive a Lua object is quite simple. + + But given a user_id to obtain the ID is more complicated. + The IUPTREEREFTABLE is used to do this mapping. + We use the object as the index to this table. +*/ + +/* iup.IUPTREEREFTABLE[object at pos] = ref */ +static void tree_settableref(lua_State *L, int pos, int ref) +{ + lua_getglobal(L, "iup"); + lua_pushstring(L, "IUPTREEREFTABLE"); + lua_gettable(L, -2); + lua_remove(L, -2); + lua_pushvalue(L, pos); + if(ref == LUA_NOREF) + lua_pushnil(L); + else + lua_pushnumber(L, ref); + lua_settable(L, -3); + lua_pop(L, 1); +} + +/* ref = iup.IUPTREEREFTABLE[object at pos] */ +static int tree_gettableref(lua_State *L, int pos) +{ + lua_getglobal(L, "iup"); + lua_pushstring(L, "IUPTREEREFTABLE"); + lua_gettable(L, -2); + lua_remove(L, -2); + lua_pushvalue(L, pos); + lua_gettable(L, -2); + if (lua_isnil(L, -1)) + { + lua_pop(L, 1); + return LUA_NOREF; + } + else + { + int ref = (int) lua_tonumber(L, -1); + lua_pop(L, 1); + return ref; + } +} + +static void tree_push_userid(lua_State *L, void* userid) +{ + int ref = (int)userid; + if (ref == 0) /* userid is actually NULL */ + lua_pushnil(L); + else + { + if (ref > 0) ref--; /* only positive references are shifted */ + lua_getref(L, ref); + } +} + +/***************************************************************************** + * Userdata/Table <-> id functions + ****************************************************************************/ + +static int TreeGetId(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int ref = tree_gettableref(L, 2); + if (ref == LUA_NOREF) + lua_pushnil(L); + else + { + int id; + if (ref >= 0) ref++; /* only positive references are shifted */ + id = IupTreeGetId(ih, (void*)ref); + if (id == -1) + lua_pushnil(L); + else + lua_pushnumber(L, id); + } + return 1; +} + +static int TreeGetUserId(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int id = (int)luaL_checknumber(L,2); + tree_push_userid(L, IupTreeGetUserId(ih, id)); + return 1; +} + +static int TreeSetUserId(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int id = (int)luaL_checknumber(L,2); + int ref = (int)IupTreeGetUserId(ih, id); + if (ref != 0) /* userid is not NULL */ + { + if (ref > 0) ref--; /* only positive references are shifted */ + + /* release the previous object referenced there */ + lua_getref(L, ref); + tree_settableref(L, 4, LUA_NOREF); + lua_unref(L, ref); + lua_pop(L, 1); + } + + if (lua_isnil(L, 3)) + IupTreeSetUserId(ih, id, NULL); + else + { + /* add a new reference */ + lua_pushvalue(L, 3); + ref = lua_ref(L, 1); + tree_settableref(L, 3, ref); + + if (ref >= 0) ref++; /* only positive references are shifted */ + IupTreeSetUserId(ih, id, (char*)ref); + } + + return 0; +} + +static int tree_multiselection_cb(Ihandle *ih, int* ids, int p1) +{ + int i; + lua_State *L = iuplua_call_start(ih, "multiselection_cb"); + lua_newtable(L); + for (i = 0; i < p1; i++) + { + lua_pushnumber(L,i+1); + lua_pushnumber(L,ids[i]); + lua_settable(L,-3); + } + lua_pushnumber(L, p1); + return iuplua_call(L, 2); +} + +static int tree_noderemoved_cb(Ihandle *ih, int id, void* p1) +{ + lua_State *L = iuplua_call_start(ih, "noderemoved_cb"); + lua_pushnumber(L, id); + tree_push_userid(L, p1); + return iuplua_call(L, 2); +} + +void iuplua_treefuncs_open (lua_State *L) +{ + iuplua_dostring(L, "IUPTREEREFTABLE={}", ""); + + iuplua_register_cb(L, "MULTISELECTION_CB", (lua_CFunction)tree_multiselection_cb, NULL); + iuplua_register_cb(L, "NODEREMOVED_CB", (lua_CFunction)tree_noderemoved_cb, NULL); + +/* In Lua 5: + TreeSetTableId = TreeSetUserId + TreeGetTable = TreeGetUserId + TreeGetTableId = TreeGetId +*/ + + /* Userdata <-> id */ + iuplua_register(L, TreeGetId, "TreeGetId"); + iuplua_register(L, TreeGetUserId, "TreeGetUserId"); + iuplua_register(L, TreeSetUserId, "TreeSetUserId"); + + /* Table <-> id */ + iuplua_register(L, TreeGetId, "TreeGetTableId"); + iuplua_register(L, TreeGetUserId, "TreeGetTable"); + iuplua_register(L, TreeSetUserId, "TreeSetTableId"); +} diff --git a/iup/srclua5/il_user.c b/iup/srclua5/il_user.c new file mode 100755 index 0000000..09475f2 --- /dev/null +++ b/iup/srclua5/il_user.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 User(lua_State *L) +{ + Ihandle *ih = IupUser(); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupuserlua_open(lua_State * L) +{ + iuplua_register(L, User, "User"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/user_be64.loh" +#else +#include "loh/user_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/user_le64w.loh" +#else +#include "loh/user_le64.loh" +#endif +#else +#include "loh/user.loh" +#endif +#endif +#else + iuplua_dofile(L, "user.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_val.c b/iup/srclua5/il_val.c new file mode 100755 index 0000000..e8918d7 --- /dev/null +++ b/iup/srclua5/il_val.c @@ -0,0 +1,76 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 val_button_press_cb(Ihandle *self, double p0) +{ + lua_State *L = iuplua_call_start(self, "button_press_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int val_mousemove_cb(Ihandle *self, double p0) +{ + lua_State *L = iuplua_call_start(self, "mousemove_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int val_button_release_cb(Ihandle *self, double p0) +{ + lua_State *L = iuplua_call_start(self, "button_release_cb"); + lua_pushnumber(L, p0); + return iuplua_call(L, 1); +} + +static int Val(lua_State *L) +{ + Ihandle *ih = IupVal((char *) luaL_checkstring(L, 1)); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupvallua_open(lua_State * L) +{ + iuplua_register(L, Val, "Val"); + + iuplua_register_cb(L, "BUTTON_PRESS_CB", (lua_CFunction)val_button_press_cb, NULL); + iuplua_register_cb(L, "MOUSEMOVE_CB", (lua_CFunction)val_mousemove_cb, "val"); + iuplua_register_cb(L, "BUTTON_RELEASE_CB", (lua_CFunction)val_button_release_cb, NULL); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/val_be64.loh" +#else +#include "loh/val_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/val_le64w.loh" +#else +#include "loh/val_le64.loh" +#endif +#else +#include "loh/val.loh" +#endif +#endif +#else + iuplua_dofile(L, "val.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_vbox.c b/iup/srclua5/il_vbox.c new file mode 100755 index 0000000..ff2c55d --- /dev/null +++ b/iup/srclua5/il_vbox.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Vbox(lua_State *L) +{ + Ihandle *ih = IupVbox(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupvboxlua_open(lua_State * L) +{ + iuplua_register(L, Vbox, "Vbox"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/vbox_be64.loh" +#else +#include "loh/vbox_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/vbox_le64w.loh" +#else +#include "loh/vbox_le64.loh" +#endif +#else +#include "loh/vbox.loh" +#endif +#endif +#else + iuplua_dofile(L, "vbox.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/il_zbox.c b/iup/srclua5/il_zbox.c new file mode 100755 index 0000000..cdc47be --- /dev/null +++ b/iup/srclua5/il_zbox.c @@ -0,0 +1,52 @@ +/****************************************************************************** + * Automatically generated file (iuplua5). 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 Zbox(lua_State *L) +{ + Ihandle *ih = IupZbox(NULL); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +int iupzboxlua_open(lua_State * L) +{ + iuplua_register(L, Zbox, "Zbox"); + + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/zbox_be64.loh" +#else +#include "loh/zbox_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/zbox_le64w.loh" +#else +#include "loh/zbox_le64.loh" +#endif +#else +#include "loh/zbox.loh" +#endif +#endif +#else + iuplua_dofile(L, "zbox.lua"); +#endif + + return 0; +} + diff --git a/iup/srclua5/image.lua b/iup/srclua5/image.lua new file mode 100755 index 0000000..38ef556 --- /dev/null +++ b/iup/srclua5/image.lua @@ -0,0 +1,96 @@ +------------------------------------------------------------------------------ +-- Image class +------------------------------------------------------------------------------ +local ctrl = { + nick = "image", + parent = WIDGET, + creation = "nns", -- fake definition + callback = {}, + createfunc = [[ +static int Image (lua_State * L) +{ + int w, h, c, num_colors; + unsigned char *pixels; + Ihandle* ih; + char str[20]; + + if (lua_istable(L, 1)) + { + int i, j; + + /* get the number of lines */ + h = luaL_getn(L, 1); + + /* get the number of columns of the first line */ + lua_pushnumber(L, 1); + lua_gettable(L, 1); + w = luaL_getn(L, -1); + lua_pop(L, 1); + + pixels = (unsigned char *) malloc (h*w); + + for (i=1; i<=h; i++) + { + lua_pushnumber(L, i); + lua_gettable(L, 1); + for (j=1; j<=w; j++) + { + int idx = (i-1)*w+(j-1); + lua_pushnumber(L, j); + lua_gettable(L, -2); + pixels[idx] = (unsigned char)lua_tonumber(L, -1); + lua_pop(L, 1); + } + lua_pop(L, 1); + } + + ih = IupImage(w,h,pixels); + free(pixels); + + num_colors = luaL_getn(L, 2); + num_colors = num_colors>255? 255: num_colors; + for(c=1; c<=num_colors; c++) + { + lua_rawgeti(L, 2, c); + sprintf(str, "%d", c); + IupStoreAttribute(ih, str, lua_tostring(L,-1)); + lua_pop(L, 1); + } + } + else + { + w = luaL_checkint(L, 1); + h = luaL_checkint(L, 2); + pixels = iuplua_checkuchar_array(L, 3, w*h); + ih = IupImage(w, h, pixels); + free(pixels); + + num_colors = luaL_getn(L, 4); + num_colors = num_colors>256? 256: num_colors; + for(c=1; c<=num_colors; c++) + { + lua_rawgeti(L, 4, c); + sprintf(str, "%d", c-1); + IupStoreAttribute(ih, str, lua_tostring(L,-1)); + lua_pop(L, 1); + } + } + + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + return 1; +} + +]] +} + +function ctrl.createElement(class, arg) + if (arg.width and arg.height and arg.pixels) then + return Image(arg.width, arg.height, arg.pixels, arg.colors) + else + return Image(arg, arg.colors) + end +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/imagergb.lua b/iup/srclua5/imagergb.lua new file mode 100755 index 0000000..caab772 --- /dev/null +++ b/iup/srclua5/imagergb.lua @@ -0,0 +1,31 @@ +------------------------------------------------------------------------------ +-- ImageRGB class +------------------------------------------------------------------------------ +local ctrl = { + nick = "imagergb", + parent = WIDGET, + creation = "nns", -- fake definition + funcname = "ImageRGB", + callback = {}, + createfunc = [[ +static int ImageRGB(lua_State *L) +{ + int w = luaL_checkint(L, 1); + int h = luaL_checkint(L, 2); + unsigned char *pixels = iuplua_checkuchar_array(L, 3, w*h*3); + Ihandle *ih = IupImageRGB(w, h, pixels); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + free(pixels); + return 1; +} + +]] +} + +function ctrl.createElement(class, arg) + return ImageRGB(arg.width, arg.height, arg.pixels) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/imagergba.lua b/iup/srclua5/imagergba.lua new file mode 100755 index 0000000..87eb967 --- /dev/null +++ b/iup/srclua5/imagergba.lua @@ -0,0 +1,31 @@ +------------------------------------------------------------------------------ +-- ImageRGBA class +------------------------------------------------------------------------------ +local ctrl = { + nick = "imagergba", + parent = WIDGET, + creation = "nns", -- fake definition + funcname = "ImageRGBA", + callback = {}, + createfunc = [[ +static int ImageRGBA(lua_State *L) +{ + int w = luaL_checkint(L, 1); + int h = luaL_checkint(L, 2); + unsigned char *pixels = iuplua_checkuchar_array(L, 3, w*h*4); + Ihandle *ih = IupImageRGBA(w, h, pixels); + iuplua_plugstate(L, ih); + iuplua_pushihandle_raw(L, ih); + free(pixels); + return 1; +} + +]] +} + +function ctrl.createElement(class, arg) + return ImageRGBA(arg.width, arg.height, arg.pixels) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/item.lua b/iup/srclua5/item.lua new file mode 100755 index 0000000..cbd0c1e --- /dev/null +++ b/iup/srclua5/item.lua @@ -0,0 +1,19 @@ +------------------------------------------------------------------------------ +-- Item class +------------------------------------------------------------------------------ +local ctrl = { + nick = "item", + parent = WIDGET, + creation = "S-", + callback = { + action = "", + highlight_cb = "", + } +} + +function ctrl.createElement(class, arg) + return Item(arg.title) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/iup_pplot.mak b/iup/srclua5/iup_pplot.mak new file mode 100755 index 0000000..b353fe7 --- /dev/null +++ b/iup/srclua5/iup_pplot.mak @@ -0,0 +1,26 @@ +PROJNAME = iup +LIBNAME = iuplua_pplot51 +OPT = YES +DEF_FILE = iuplua_pplot5.def + +IUP := .. + +DEFINES = IUPLUA_USELOH + +USE_IUP3 = Yes +USE_IUPLUA = Yes +USE_CDLUA = Yes +LIBS = iup_pplot + +USE_LUA51 = Yes +NO_LUALINK = Yes + +LOHDIR = loh +SRCLUA = pplot.lua +GC := $(addsuffix .c, $(basename $(SRCLUA))) +GC := $(addprefix il_, $(GC)) + +$(GC) : il_%.c : %.lua generator.lua + $(LUABIN) generator.lua $< + +SRC := iuplua_pplot.c $(GC) diff --git a/iup/srclua5/iupcd.mak b/iup/srclua5/iupcd.mak new file mode 100755 index 0000000..26cf9b8 --- /dev/null +++ b/iup/srclua5/iupcd.mak @@ -0,0 +1,21 @@ +PROJNAME = iup +LIBNAME = iupluacd51 +OPT = YES + +DEFINES = CD_NO_OLD_INTERFACE +SRC = iuplua_cd.c +DEF_FILE = iupluacd5.def + +# Can not use USE_IUPLUA because Tecmake will include "iupluacd51" in linker + +INCLUDES = ../include +LIBS = iuplua51 +LDIR = ../lib/$(TEC_UNAME) + +IUP := .. + +USE_CD = YES +USE_IUP3 = YES +USE_LUA51 = Yes +NO_LUALINK = Yes +USE_CDLUA = YES diff --git a/iup/srclua5/iupcontrols.mak b/iup/srclua5/iupcontrols.mak new file mode 100755 index 0000000..ea1e59f --- /dev/null +++ b/iup/srclua5/iupcontrols.mak @@ -0,0 +1,26 @@ +PROJNAME = iup +LIBNAME = iupluacontrols51 +OPT = YES +DEF_FILE = iupluacontrols5.def + +IUP := .. + +DEFINES = IUPLUA_USELOH + +USE_IUP3 = Yes +USE_IUPLUA = Yes +USE_CDLUA = Yes +LIBS = iupcontrols + +USE_LUA51 = Yes +NO_LUALINK = Yes + +LOHDIR = loh +SRCLUA = dial.lua gauge.lua colorbrowser.lua colorbar.lua matrix.lua cells.lua +GC := $(addsuffix .c, $(basename $(SRCLUA))) +GC := $(addprefix il_, $(GC)) + +$(GC) : il_%.c : %.lua generator.lua + $(LUABIN) generator.lua $< + +SRC := iuplua_controls.c il_mask.c il_matrix_aux.c $(GC) diff --git a/iup/srclua5/iupgl.mak b/iup/srclua5/iupgl.mak new file mode 100755 index 0000000..6e9f45d --- /dev/null +++ b/iup/srclua5/iupgl.mak @@ -0,0 +1,27 @@ +PROJNAME = iup +LIBNAME = iupluagl51 +OPT = YES + +DEF_FILE = iupluagl5.def +DEFINES = IUPLUA_USELOH + +IUP := .. + +# Can not use USE_IUPLUA because Tecmake will include "iupluagl51" in linker + +USE_IUP3 = Yes +USE_OPENGL = Yes +LIBS = iuplua51 + +USE_LUA51 = Yes +NO_LUALINK = Yes + +LOHDIR = loh +SRCLUA = glcanvas.lua +GC = $(addsuffix .c, $(basename $(SRCLUA))) +GC := $(addprefix il_, $(GC)) + +$(GC) : il_%.c : %.lua generator.lua + $(LUABIN) generator.lua $< + +SRC = iuplua_glcanvas.c $(GC) diff --git a/iup/srclua5/iupim.mak b/iup/srclua5/iupim.mak new file mode 100755 index 0000000..1355c42 --- /dev/null +++ b/iup/srclua5/iupim.mak @@ -0,0 +1,17 @@ +PROJNAME = iup +LIBNAME = iupluaim51 +OPT = YES + +DEF_FILE = iupluaim5.def +SRC = iuplua_im.c + +INCLUDES = ../src +LIBS = iupim + +IUP := .. + +USE_IUP3 = Yes +USE_IUPLUA = Yes +USE_IM = Yes +USE_LUA51 = Yes +NO_LUALINK = Yes diff --git a/iup/srclua5/iupimglib.mak b/iup/srclua5/iupimglib.mak new file mode 100755 index 0000000..5b74dfb --- /dev/null +++ b/iup/srclua5/iupimglib.mak @@ -0,0 +1,17 @@ +PROJNAME = iup +LIBNAME = iupluaimglib51 +OPT = YES + +SRC = iuplua_imglib.c +DEF_FILE = iupluaimglib5.def + +INCLUDES = ../include +LIBS = iupimglib +LDIR = ../lib/$(TEC_UNAME) + +IUP := .. + +USE_IUP3 = Yes +USE_IUPLUA = Yes +USE_LUA51 = Yes +NO_LUALINK = Yes diff --git a/iup/srclua5/iuplua.c b/iup/srclua5/iuplua.c new file mode 100755 index 0000000..fd001a0 --- /dev/null +++ b/iup/srclua5/iuplua.c @@ -0,0 +1,918 @@ +/** \file +* \brief IUP binding for Lua 5. +* +* See Copyright Notice in "iup.h" +*/ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include "iup.h" +#include "iup_str.h" + +#include <lua.h> +#include <lauxlib.h> + +#include "iuplua.h" +#include "il.h" + + +/***************************************************************************** +* Auxiliary functions * +****************************************************************************/ + + + /*************************************/ + /* iuplua_dostring and iuplua_dofile */ + +static void error_message(lua_State *L, const char *msg, const char* traceback) +{ + lua_getglobal(L, "iup"); + lua_pushstring(L, "_ERRORMESSAGE"); + lua_gettable(L, -2); + lua_remove(L, -2); + + if(lua_isnil(L, -1)) + { + /* Panic mode */ + if (traceback != NULL) + fprintf(stderr, "%s\n%s\n", msg, traceback); + else + fprintf(stderr, "%s\n", msg); + fflush(stderr); + return; + } + lua_pushstring(L, msg); + lua_pushstring(L, traceback); + lua_call(L, 2, 0); +} + +static int report (lua_State *L, int status, int concat_traceback) +{ + if (status && !lua_isnil(L, -1)) + { + const char *msg = lua_tostring(L, -2); + + + + const char *traceback; + if (msg == NULL) { + msg = "(error with no message)"; + traceback = NULL; + } + else if (concat_traceback) { + lua_concat(L, 2); + msg = lua_tostring(L, -1); + traceback = NULL; + } + else { + traceback = lua_tostring(L, -1); + } + error_message(L, msg, traceback); + lua_pop(L, 2); + } + return status; +} + +static int traceback (lua_State *L) { + lua_getfield(L, LUA_GLOBALSINDEX, "debug"); + if (!lua_istable(L, -1)) { + lua_pop(L, 1); + return 1; + } + lua_getfield(L, -1, "traceback"); + if (!lua_isfunction(L, -1)) { + lua_pop(L, 2); + return 1; + } + + lua_remove(L, 2); + lua_pushliteral(L, ""); + lua_pushinteger(L, 2); /* skip this function */ + lua_call(L, 2, 1); /* call debug.traceback */ + lua_getglobal(L, "iup"); /* store traceback in iup._LASTTRACEBACK */ + lua_pushstring(L, "_LASTTRACEBACK"); + lua_pushvalue(L, -3); + lua_settable(L, -3); + lua_pop(L, 2); + return 1; +} + +static int docall (lua_State *L, int narg, int nret) +{ + int status; + int base = lua_gettop(L) - narg; /* function index */ + lua_pushcfunction(L, traceback); /* push traceback function */ + lua_insert(L, base); /* put it under chunk and args */ + status = lua_pcall(L, narg, nret, base); + lua_remove(L, base); /* remove traceback function */ + if (status != 0) { + /* force a complete garbage collection in case of errors */ + lua_gc(L, LUA_GCCOLLECT, 0); + /* put _LASTTRACEBACK at stack position 2 */ + lua_getglobal(L, "iup"); + lua_pushliteral(L, "_LASTTRACEBACK"); + lua_gettable(L, -2); + lua_remove(L, -2); + if (!lua_isstring(L, -1)) { + lua_pop(L, 1); + lua_pushliteral(L, ""); + /* set _LASTTRACEBACK as nil */ + lua_getglobal(L, "iup"); + lua_pushliteral(L, "_LASTTRACEBACK"); + lua_pushnil(L); + lua_settable(L, -3); + lua_pop(L, 1); + } + } + return status; +} + +int iuplua_dofile(lua_State *L, const char *filename) +{ + int status = luaL_loadfile(L, filename); + if (status == 0) + status = docall(L, 0, 0); + return report(L, status, 1); +} + +int iuplua_dostring(lua_State *L, const char *s, const char *name) +{ + int status = luaL_loadbuffer(L, s, strlen(s), name); + if (status == 0) + status = docall(L, 0, 0); + return report(L, status, 1); +} + + /*************************************/ + /* Utilities */ + +Ihandle *iuplua_checkihandleornil(lua_State *L, int pos) +{ + if (lua_isnil(L, pos)) + return NULL; + else + return iuplua_checkihandle(L, pos); +} + +Ihandle *iuplua_checkihandle(lua_State *L, int pos) +{ + lua_getmetatable(L, pos); /* t2 = metatable(stack(pos)) */ + lua_pushstring(L, "iup handle"); + lua_gettable(L, LUA_REGISTRYINDEX); /* t = registry["iup handle"] */ + if (lua_equal(L, -2, -1)) /* check (t2==t)? */ + { + lua_pop (L, 2); + return *(Ihandle**)lua_touserdata(L, pos); + } + else + { + luaL_argerror(L, pos, "iup handle expected"); + return NULL; + } +} + +void iuplua_pushihandle_raw(lua_State *L, Ihandle *ih) +{ + if (ih) + { + Ihandle** new_pointer = (Ihandle**)lua_newuserdata(L, sizeof(Ihandle*)); + *new_pointer = ih; + } + else + lua_pushnil(L); +} + +void iuplua_pushihandle(lua_State *L, Ihandle *ih) +{ + if (ih) + { + /* not created in Lua? */ + char* sref = IupGetAttribute(ih, "_IUPLUA_WIDGET_TABLE_REF"); + if (!sref) + { + lua_getglobal(L,"iup"); + lua_pushstring(L,"RegisterHandle"); + lua_gettable(L, -2); /* f = iup.RegisterHandle */ + lua_remove(L, -2); + iuplua_pushihandle_raw(L, ih); /* push ih */ + lua_pushstring(L, IupGetClassName(ih)); /* push type */ + lua_call(L, 2, 1); /* call f(ih, type) */ + } + else + { + iuplua_pushihandle_raw(L, ih); /* push ih */ + lua_pushstring(L, "iup handle"); + lua_gettable(L, LUA_REGISTRYINDEX); /* t = registry["iup handle"] */ + lua_setmetatable(L, -2); /* metatable(ih) = t */ + } + } + else + lua_pushnil(L); +} + +void iuplua_removeihandle(lua_State *L, Ihandle *ih) +{ + char* sref; + + /* called from Destroy. + must also remove references from the children. */ + Ihandle* child = IupGetNextChild(ih, NULL); + while(child) + { + iuplua_removeihandle(L, child); + child = IupGetNextChild(ih, child); + } + + sref = IupGetAttribute(ih, "_IUPLUA_WIDGET_TABLE_REF"); + if (sref) + { + int ref = atoi(sref); + + /* removes the ihandle reference in the lua table */ + /* object.handle = nil */ + lua_getref(L, ref); /* push object */ + lua_pushstring(L, "handle"); + lua_pushnil(L); + lua_settable(L, -3); + lua_pop(L,1); + + /* removes the association of the ihandle with the lua table */ + lua_unref(L, ref); /* this is the complement of SetWidget */ + IupSetAttribute(ih, "_IUPLUA_WIDGET_TABLE_REF", NULL); + } +} + +char ** iuplua_checkstring_array(lua_State *L, int pos) +{ + int i,n; + char **v; + n = luaL_getn(L,pos); + v = (char **) malloc (n*sizeof(char *)); + for(i=1; i<=n; i++) + { + lua_pushnumber(L,i); + lua_gettable(L,pos); + v[i-1] = (char*)lua_tostring(L, -1); + lua_pop(L,1); + } + return v; +} + +int * iuplua_checkint_array(lua_State *L, int pos) +{ + int i,n; + int *v; + n = luaL_getn(L,pos); + v = (int *) malloc (n*sizeof(int)); + for(i=1; i<=n; i++) + { + lua_pushnumber(L,i); + lua_gettable(L,pos); + v[i-1] = (int)lua_tonumber(L, -1); + lua_pop(L,1); + } + return v; +} + +unsigned char* iuplua_checkuchar_array(lua_State *L, int pos, int count) +{ + int i,n; + unsigned char *v; + n = luaL_getn(L,pos); + if (n != count) + { + lua_pushstring(L, "invalid number of elements in array"); + lua_error(L); + } + v = (unsigned char *) malloc (n*sizeof(unsigned char)); + for(i=1; i<=n; i++) + { + lua_pushnumber(L,i); + lua_gettable(L,pos); + v[i-1] = (unsigned char)lua_tonumber(L, -1); + lua_pop(L,1); + } + return v; +} + +Ihandle ** iuplua_checkihandle_array(lua_State *L, int pos) +{ + Ihandle **v; + int i, n = luaL_getn(L, pos); + v = (Ihandle **) malloc ((n+1)*sizeof(Ihandle *)); + for (i=1; i<=n; i++) + { + lua_pushnumber(L,i); + lua_gettable(L,pos); + v[i-1] = iuplua_checkihandle(L, -1); + lua_pop(L,1); + } + v[i-1] = NULL; + return v; +} + + /*************************************/ + /* used by callbacks */ + +void iuplua_plugstate(lua_State *L, Ihandle *ih) +{ + IupSetAttribute(ih, "_IUPLUA_STATE_CONTEXT",(char *) L); +} + +lua_State* iuplua_getstate(Ihandle *ih) +{ + return (lua_State *) IupGetAttribute(ih, "_IUPLUA_STATE_CONTEXT"); +} + +lua_State* iuplua_call_start(Ihandle *ih, const char* name) +{ + lua_State *L = iuplua_getstate(ih); + + /* prepare to call iupCallMethod(name, handle, ...) */ + lua_getglobal(L,"iup"); + lua_pushstring(L,"iupCallMethod"); + lua_gettable(L, -2); + lua_remove(L, -2); + + lua_pushstring(L, name); + iuplua_pushihandle(L, ih); + return L; +} + +int iuplua_call(lua_State* L, int nargs) +{ + int status = docall(L, nargs+2, 1); + report(L, status, 0); + + if (status) + return IUP_DEFAULT; + else + { + int tmp = (int) lua_isnil(L, -1) ? IUP_DEFAULT : (int)lua_tonumber(L,-1); + lua_pop(L, 1); + return tmp; + } +} + +char* iuplua_call_rs(lua_State *L, int nargs) +{ + int status = docall(L, nargs+2, 1); + report(L, status, 0); + + if (status) + return NULL; + else + { + char* tmp = lua_isnil(L, -1) ? NULL: (char*)lua_tostring(L,-1); + lua_pop(L, 1); + return tmp; + } +} + +int iuplua_call_raw(lua_State* L, int nargs, int nresults) +{ + int status = docall(L, nargs, nresults); + report(L, status, 0); + return status; +} + +void iuplua_register_cb(lua_State *L, const char* name, lua_CFunction func, const char* type) +{ + lua_getglobal(L, "RegisterCallback"); + lua_pushstring(L, name); + lua_pushcfunction(L, func); + lua_pushstring(L, type); + lua_call(L, 3, 0); +} + +/* iupSetCallback(handle, name, func, value) */ +static int SetCallback(lua_State *L) +{ + Icallback func; + + Ihandle* ih = iuplua_checkihandle(L, 1); + const char* name = luaL_checkstring(L, 2); + + if (!lua_iscfunction(L, 3)) + { + lua_pushstring(L, "invalid function when set callback"); + lua_error(L); + } + func = (Icallback)lua_tocfunction(L, 3); + + if (lua_isnil(L, 4)) /* value is only used here to remove the callback */ + IupSetCallback(ih, name, (Icallback)NULL); + else + IupSetCallback(ih, name, func); + + /* value, when not nil, is always the same name of a C callback in lowercase */ + + return 0; +} + + /*************************************/ + /* metatable */ + +/* iupNewClass(class_name) + Calls: + iupNewClass("iup handle") + iupNewClass("iup widget") +*/ +static int NewClass(lua_State *L) +{ + lua_newtable(L); /* push t */ + lua_pushstring(L, "class"); /* push "class" */ + lua_pushvalue(L, 1); /* push again the class_name to the stack, because settable will remove it */ + lua_settable(L, -3); /* t.class = class_name */ + lua_settable(L, LUA_REGISTRYINDEX); /* registry[class_name] = t */ + return 0; +} + +/* iupSetClass(t, class_name) + Calls: + iupSetClass(handle, "iup handle") --Used only in RegisterHandle and WIDGET.constructor + iupSetClass(object, "iup widget") --Used whenever a new control class is created. +*/ +static int SetClass(lua_State *L) +{ + lua_gettable(L, LUA_REGISTRYINDEX); /* t2 = registry[class_name] */ + if (lua_isnil(L, -1)) + { + lua_pushstring(L, "invalid class name"); + lua_error(L); + } + lua_setmetatable(L, -2); /* metatable(t) = t2 */ + return 0; +} + +/* class_name = iupGetClass(t) */ +static int GetClass(lua_State *L) +{ + if (lua_istable(L, 1) || lua_isuserdata(L, 1)) + { + lua_getmetatable(L, 1); /* t2 = metatable(t) */ + if (lua_istable(L, -1)) + { + lua_pushstring(L, "class"); + lua_gettable(L, -2); /* class_name = t2.class */ + return 1; + } + } + lua_pushnil(L); + return 1; +} + +/* iupSetMethod(class_name, method, function) + For ex: + iupSetMethod("iup handle", "__index", ihandle_gettable) +*/ +static int SetMethod(lua_State *L) +{ + lua_pushvalue(L, 1); /* push class_name */ + lua_gettable(L, LUA_REGISTRYINDEX); /* t = registry[class_name] */ + if (lua_isnil(L, -1)) + { + lua_pushstring(L, "invalid class name"); + lua_error(L); + } + lua_pushvalue(L, -3); /* push method */ + lua_pushvalue(L, -3); /* push function */ + lua_settable(L, -3); /* t.method = function */ + return 0; +} + +static int ihandle_tostring (lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L, 1); + if (!ih) + lua_pushstring (L, "(not an IUP handle)"); + else + lua_pushfstring (L, "IUP(%s): %p", IupGetClassName(ih), ih); + return 1; +} + +static int ihandle_compare(lua_State *L) +{ + Ihandle *a = iuplua_checkihandle(L, 1); + Ihandle *b = iuplua_checkihandle(L, 2); + if(a == b) + lua_pushboolean(L, 1); + else + lua_pushboolean(L, 0); + return 1; +} + + /*************************************/ + /* table <-> ihandle */ + +/* local object = iupGetWidget(handle) */ +static int GetWidget(lua_State *L) +{ + /* Pushes a table that is associanted with an ihandle */ + /* Used by the "__index" metamethod of the "iup handle" */ + Ihandle * ih = iuplua_checkihandle(L,1); + char* sref = IupGetAttribute(ih, "_IUPLUA_WIDGET_TABLE_REF"); + if (!sref) + lua_pushnil(L); + else + lua_getref(L, atoi(sref)); + return 1; +} + +/* iupSetWidget(handle, object) */ +static int SetWidget(lua_State *L) +{ + /* Saves the object table reference as an attribute, + i.e. associates a table with the ihandle. + Used by the "iup widget" constructor and by RegisterHandle */ + Ihandle * ih = iuplua_checkihandle(L,1); + char* sref = IupGetAttribute(ih, "_IUPLUA_WIDGET_TABLE_REF"); + if (!sref) + { + int ref = lua_ref(L, 1); + IupSetfAttribute(ih, "_IUPLUA_WIDGET_TABLE_REF", "%d", ref); /* this must be a non-inheritable attribute */ + } + return 0; +} + + /*************************************/ + /* registration */ + +void iuplua_changeEnv(lua_State *L) +{ + /* Replaces global environment */ + lua_pushvalue(L, LUA_GLOBALSINDEX); + lua_getglobal(L, "iup"); + lua_replace(L, LUA_GLOBALSINDEX); +} + +void iuplua_returnEnv(lua_State *L) +{ + /* reestablishes global environment */ + lua_replace(L, LUA_GLOBALSINDEX); +} + +int iuplua_opencall_internal(lua_State * L) +{ + int ret = 0; + const char* s; + lua_getglobal(L, "iup"); + lua_pushliteral(L,"_IUPOPEN_CALL"); + lua_gettable(L, -2); + s = lua_tostring(L, -1); + if (s && strcmp(s, "INTERNAL")==0) + ret = 1; + lua_pop(L,2); + return ret; +} + +void iuplua_register(lua_State *L, lua_CFunction func, const char* name) +{ + lua_pushcfunction(L, func); + lua_setglobal(L, name); +} + +void iuplua_regstring(lua_State *L, const char* s, const char* name) +{ + lua_pushstring(L, s); + lua_setglobal(L, name); +} + +/***************************************************************************** +* Common Callbacks * +****************************************************************************/ + +static int help_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "help_cb"); + return iuplua_call(L, 0); +} + +static int getfocus_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "getfocus_cb"); + return iuplua_call(L, 0); +} + +static int k_any(Ihandle *self, int c) +{ + lua_State *L = iuplua_call_start(self, "k_any"); + lua_pushnumber(L, c); + return iuplua_call(L, 1); +} + +static int killfocus_cb(Ihandle *self) +{ + lua_State *L = iuplua_call_start(self, "killfocus_cb"); + return iuplua_call(L, 0); +} + +static int Idlecall(void) +{ + int ret = 0; + lua_State *L = (lua_State *) IupGetGlobal("_IUP_LUA_DEFAULT_STATE"); + lua_getglobal(L, "_IUP_LUA_IDLE_FUNC_"); + lua_call(L, 0, 1); + ret = (int) lua_tonumber(L, -1); + lua_pop(L, 1); + return ret; +} + +static int SetIdle(lua_State *L) +{ + if lua_isnoneornil(L,1) + IupSetFunction("IDLE_ACTION", NULL); + else + { + luaL_checktype(L, 1, LUA_TFUNCTION); + lua_pushvalue(L,1); + lua_setglobal(L, "_IUP_LUA_IDLE_FUNC_"); + IupSetFunction("IDLE_ACTION", (Icallback) Idlecall); + } + return 0; +} + +/***************************************************************************** +* Iuplua bind functions * +****************************************************************************/ + + +static int GetFromC(lua_State *L) +{ + Ihandle *n; + const char *a; + if (!lua_istable(L, -1)) + { + lua_pushstring(L, "IupGetFromC: wrong arguments to function"); + lua_error(L); + return 0; + } + lua_pushnumber(L, 1); + lua_gettable(L, -2); + if (!lua_isstring(L, -1)) + { + lua_pushstring(L, "IupGetFromC: wrong arguments to function"); + lua_error(L); + return 0; + } + a = lua_tostring(L, -1); + n = IupGetHandle((char*)a); + if(n) + iuplua_pushihandle(L, n); + else + lua_pushnil(L); + return 1; +} + + +/***************************************************************************** + * iupkey * + ****************************************************************************/ + + +static void register_key(char *name, int code, void* user_data) +{ + lua_State *L = (lua_State*)user_data; + lua_pushnumber(L, code); lua_setglobal(L, name); +} + +/* from iupkey.c */ +void iupKeyForEach(void (*func)(char *name, int code, void* user_data), void* user_data); + +int iupkey_open(lua_State *L) +{ + (void)L; + /* does nothing, kept for backward compatibility */ + return 0; +} + + +/***************************************************************************** +* iuplua_open * +****************************************************************************/ + + +static int il_open(lua_State * L) +{ + int ret, argc = 0; + char **argv = NULL; + + lua_getglobal(L, "arg"); + if (lua_istable(L, -1)) + { + int i; + argc = luaL_getn(L, -1); + argv = malloc(sizeof(char*)*argc); + for(i=1; i<=argc; i++) + { + lua_pushnumber(L,i); + lua_gettable(L,-2); + argv[i-1] = (char*)lua_tostring(L, -1); + lua_pop(L,1); + } + } + lua_pop(L, 1); + + ret = IupOpen(&argc, &argv); + if (ret == IUP_ERROR) + { + if (argv) free(argv); + lua_pushstring(L, "IupOpen: could not initialize"); + lua_error(L); + return 0; + } + + if (argv) free(argv); + lua_pushinteger(L, ret); + return 1; +} + +int iuplua_close(lua_State * L) +{ + if (iuplua_opencall_internal(L)) + IupClose(); + return 0; /* nothing in stack */ +} + +static void setinfo (lua_State *L) +{ + /* table "iup" is at the stack */ + + lua_pushliteral (L, "_COPYRIGHT"); + lua_pushliteral (L, IUP_COPYRIGHT); + lua_settable (L, -3); + + lua_pushliteral (L, "_DESCRIPTION"); + lua_pushliteral (L, IUP_DESCRIPTION); + lua_settable (L, -3); + + lua_pushliteral (L, "_NAME"); + lua_pushliteral (L, IUP_NAME); + lua_settable (L, -3); + + lua_pushliteral (L, "_VERSION"); + lua_pushstring (L, IupVersion()); + lua_settable (L, -3); + + lua_pushliteral (L, "_VERSION_DATE"); + lua_pushliteral (L, IUP_VERSION_DATE); + lua_settable (L, -3); + + lua_pushliteral (L, "_VERSION_NUMBER"); + lua_pushinteger (L, IupVersionNumber()); + lua_settable (L, -3); +} + +int iuplua_open(lua_State * L) +{ + int ret; + + struct luaL_reg funcs[] = { + {"key_open", iupkey_open}, + {"Open", il_open}, + {"Close", iuplua_close}, + {"SetIdle", SetIdle}, + {"GetFromC", GetFromC}, + {"iupGetWidget", GetWidget}, + {"iupSetWidget", SetWidget}, + {"iupNewClass", NewClass}, + {"iupSetClass", SetClass}, + {"iupGetClass", GetClass}, + {"iupSetMethod", SetMethod}, + {"iupSetCallback", SetCallback}, + {"ihandle_compare", ihandle_compare}, + {"ihandle_tostring", ihandle_tostring}, + {NULL, NULL}, + }; + + if (!il_open(L)) + return 0; + + ret = lua_tointeger(L, -1); /* retrieve IupOpen return value */ + lua_pop(L, -1); + + /* Creating global namespace iup */ + lua_newtable(L); + lua_setglobal(L, "iup"); + + /* Registers functions in iup namespace */ + luaL_openlib(L, "iup", funcs, 0); + iupluaapi_open(L); + + /* set version info */ + setinfo(L); + + /* register if IupOpen was called here or from outside IupLua */ + lua_pushliteral (L, "_IUPOPEN_CALL"); + if (ret == IUP_OPENED) lua_pushliteral (L, "EXTERNAL"); + else lua_pushliteral (L, "INTERNAL"); + lua_settable (L, -3); + + /* used by Idle */ + IupSetGlobal("_IUP_LUA_DEFAULT_STATE", (char *) L); + + /* Creating new environment with metamethod __index + * (so that normal Lua functions will be found while GLOBALSINDEX is the "iup" environment) */ + iuplua_dostring(L, "iup._G = _G\ + setmetatable(iup, {__index = iup._G})", "iuplua_setmetatable_global"); + + /* Changing environment to iup + * (all created variables and functions from now on will be put in "iup" environment) */ + iuplua_changeEnv(L); + +#ifdef IUPLUA_USELOH +#ifdef TEC_BIGENDIAN +#ifdef TEC_64 +#include "loh/iuplua_be64.loh" +#include "loh/constants_be64.loh" +#else +#include "loh/iuplua_be32.loh" +#include "loh/constants_be32.loh" +#endif +#else +#ifdef TEC_64 +#ifdef WIN64 +#include "loh/iuplua_le64w.loh" +#include "loh/constants_le64w.loh" +#else +#include "loh/iuplua_le64.loh" +#include "loh/constants_le64.loh" +#endif +#else +#include "loh/iuplua.loh" +#include "loh/constants.loh" +#endif +#endif +#else + iuplua_dofile(L, "iuplua.lua"); + iuplua_dofile(L, "constants.lua"); +#endif + + /* Register the common callbacks */ + iuplua_register_cb(L, "HELP_CB", (lua_CFunction)help_cb, NULL); + iuplua_register_cb(L, "GETFOCUS_CB", (lua_CFunction)getfocus_cb, NULL); + iuplua_register_cb(L, "K_ANY", (lua_CFunction)k_any, NULL); + iuplua_register_cb(L, "KILLFOCUS_CB", (lua_CFunction)killfocus_cb, NULL); + + /* Register Keys */ + iupKeyForEach(register_key, (void*)L); + + /* Iup Modules initialization */ + iupbuttonlua_open(L); + iupcanvaslua_open(L); + iupdialoglua_open(L); + iupfilllua_open(L); + iupframelua_open(L); + iupfiledlglua_open(L); + iuphboxlua_open(L); + iupitemlua_open(L); + iupimagelua_open(L); + iuplabellua_open(L); + iuplistlua_open(L); + iupmenulua_open(L); + iupmultilinelua_open(L); + iupradiolua_open(L); + iupseparatorlua_open(L); + iupsubmenulua_open(L); + iuptextlua_open(L); + iuptogglelua_open(L); + iupvboxlua_open(L); + iupzboxlua_open(L); + iuptimerlua_open(L); + iupsboxlua_open(L); + iupspinlua_open(L); + iupspinboxlua_open(L); + iupcboxlua_open(L); + iupgclua_open(L); + iupgetparamlua_open(L); + iupvallua_open(L); + iuptabslua_open(L); + iupfontdlglua_open(L); + iupmessagedlglua_open(L); + iupcolordlglua_open(L); + iupimagergbalua_open(L); + iupimagergblua_open(L); + iupprogressbarlua_open(L); + iupnormalizerlua_open(L); + iupuserlua_open(L); + iuptreelua_open(L); + iupclipboardlua_open(L); + + iuplua_returnEnv(L); + + return 0; /* nothing in stack */ +} + +/* obligatory to use require"iuplua" */ +int luaopen_iuplua(lua_State* L) +{ + return iuplua_open(L); +} + +/* obligatory to use require"iuplua51" */ +int luaopen_iuplua51(lua_State* L) +{ + return iuplua_open(L); +} diff --git a/iup/srclua5/iuplua.lua b/iup/srclua5/iuplua.lua new file mode 100755 index 0000000..b0f644a --- /dev/null +++ b/iup/srclua5/iuplua.lua @@ -0,0 +1,285 @@ +-- This file is executed with the "iup" table already as the globalindex + +------------------------------------------------------------------------------ +-- Callback handler +------------------------------------------------------------------------------ + +callbacks = {} + +function iupCallMethod(name, ...) + local handle = arg[1] -- always the handle + local func = handle[name] + if (not func) then + return + end + + if type(func) == "function" then + return func(unpack(arg)) + elseif type(func) == "string" then + local temp = self + self = handle + local result = iup.dostring(func) + self = temp + return result + else + return iup.ERROR + end +end + +function RegisterCallback(name, func, type) + if not callbacks[name] then callbacks[name] = {} end + local cb = callbacks[name] + if type then + cb[type] = func + else + cb[1] = func + end +end + +------------------------------------------------------------------------------ +-- Meta Methods +------------------------------------------------------------------------------ + + +local widget_gettable = function(object, index) + local p = object + local v + while 1 do + v = rawget(p, index) + if v then return v end + p = rawget(p, "parent") + if not p then return nil end + end +end + +iupNewClass("iup widget") +iupSetMethod("iup widget", "__index", widget_gettable) + + +local ihandle_gettable = function(handle, index) + local INDEX = string.upper(index) + if (callbacks[INDEX]) then + local object = iupGetWidget(handle) + if (not object or type(object)~="table") then error("invalid iup handle") end + return object[index] + else + local value = GetAttribute(handle, INDEX) + if (not value) then + local object = iupGetWidget(handle) + if (not object or type(object)~="table") then error("invalid iup handle") end + return object[index] + elseif type(value)== "number" or type(value) == "string" then + local ih = GetHandle(value) + if ih then return ih + else return value end + else + return value + end + end +end + +local ihandle_settable = function(handle, index, value) + local ti = type(index) + local tv = type(value) + local object = iupGetWidget(handle) + if (not object or type(object)~="table") then error("invalid iup handle") end + if ti == "number" or ti == "string" then -- check if a valid C name + local INDEX = string.upper(index) + local cb = callbacks[INDEX] + if (cb) then -- if a callback name + local func = cb[1] + if (not func) then + func = cb[GetClassName(handle)] + end + iupSetCallback(handle, INDEX, func, value) -- register the pre-defined C callback + object[index] = value -- store also in Lua + elseif iupGetClass(value) == "iup handle" then -- if a iup handle + local name = ihandle_setname(value) + SetAttribute(handle, INDEX, name) + object[index] = nil -- if there was something in Lua remove it + elseif tv == "string" or tv == "number" or tv == "nil" then -- if a common value + SetAttribute(handle, INDEX, value) + object[index] = nil -- if there was something in Lua remove it + else + object[index] = value -- store also in Lua + end + else + object[index] = value -- store also in Lua + end +end + +iupNewClass("iup handle") +iupSetMethod("iup handle", "__index", ihandle_gettable) +iupSetMethod("iup handle", "__newindex", ihandle_settable) +iupSetMethod("iup handle", "__tostring", ihandle_tostring) +iupSetMethod("iup handle", "__eq", ihandle_compare) -- implemented in C + + +------------------------------------------------------------------------------ +-- Utilities +------------------------------------------------------------------------------ + +function ihandle_setname(v) -- used also by radio and zbox + local name = GetName(v) + if not name then + local autoname = string.format("_IUPLUA_NAME(%s)", tostring(v)) + SetHandle(autoname, v) + return autoname + end + return name +end + +function iupRegisterWidget(ctrl) -- called by all the controls initialization functions + iup[ctrl.nick] = function(arg) + return ctrl:constructor(arg) + end +end + +function RegisterHandle(handle, typename) + + iupSetClass(handle, "iup handle") + + local object = iupGetWidget(handle) + if not object then + + local class = iup[string.upper(typename)] + if not class then + class = WIDGET + end + + local object = { parent=class, handle=handle } + iupSetClass(object, "iup widget") + iupSetWidget(handle, object) + end + + return handle +end + +------------------------------------------------------------------------------ +-- Widget class (top class) +------------------------------------------------------------------------------ + +WIDGET = { + callback = {} +} + +function WIDGET.show(object) + Show(object.handle) +end + +function WIDGET.hide(object) + Hide(object.handle) +end + +function WIDGET.map(object) + Map(object.handle) +end + +function WIDGET.constructor(class, arg) + local handle = class:createElement(arg) + local object = { + parent = class, + handle = handle + } + iupSetClass(handle, "iup handle") + iupSetClass(object, "iup widget") + iupSetWidget(handle, object) + object:setAttributes(arg) + return handle +end + +function WIDGET.setAttributes(object, arg) + local handle = object.handle + for i,v in pairs(arg) do + if type(i) == "number" and iupGetClass(v) == "iup handle" then + -- We should not set this or other elements (such as iuptext) + -- will erroneosly inherit it + rawset(object, i, v) + else + -- this will call settable metamethod + handle[i] = v + end + end +end + +-- all the objects in the hierarchy must be "iup widget" +-- Must repeat this call for every new widget +iupSetClass(WIDGET, "iup widget") + + +------------------------------------------------------------------------------ +-- Box class (inherits from WIDGET) +------------------------------------------------------------------------------ + +BOX = { + parent = WIDGET +} + +function BOX.setAttributes(object, arg) + local handle = rawget(object, "handle") + local n = #arg + for i = 1, n do + if iupGetClass(arg[i]) == "iup handle" then + Append(handle, arg[i]) + end + end + WIDGET.setAttributes(object, arg) +end + +iupSetClass(BOX, "iup widget") + + +------------------------------------------------------------------------------ +-- Compatibility functions. +------------------------------------------------------------------------------ + +error_message_popup = nil + +function _ERRORMESSAGE(err,traceback) + err = err..(traceback or "") + if (error_message_popup) then + error_message_popup.value = err + else + local bt = button{title="Ok", size="60", action="error_message_popup = nil; return iup.CLOSE"} + local ml = multiline{expand="YES", readonly="YES", value=err, size="300x150"} + local vb = vbox{ml, bt; alignment="ACENTER", margin="10x10", gap="10"} + local dg = dialog{vb; title="Error Message",defaultesc=bt,defaultenter=bt,startfocus=bt} + error_message_popup = ml + dg:popup(CENTER, CENTER) + dg:destroy() + error_message_popup = nil + end +end + +pack = function (...) return arg end + +function protectedcall_(f, err) + if not f then + _ERRORMESSAGE(err) + return + end + local ret = pack(pcall(f)) + if not ret[1] then + _ERRORMESSAGE(ret[2]) + return + else + table.remove(ret, 1) + return unpack(ret) + end +end + +function dostring(s) return protectedcall_(loadstring(s)) end +function dofile(f) return protectedcall_(loadfile(f)) end + +function RGB(r, g, b) + return string.format("%d %d %d", 255*r, 255*g, 255*b) +end + +-- This will allow both names to be used in the same application +-- also will allow static linking to work with require +if _G.package then + _G.package.loaded["iuplua"] = iup + _G.package.loaded["iuplua51"] = iup + iup._M = iup + iup._PACKAGE = "iuplua" +end diff --git a/iup/srclua5/iuplua5.def b/iup/srclua5/iuplua5.def new file mode 100755 index 0000000..78b2a6f --- /dev/null +++ b/iup/srclua5/iuplua5.def @@ -0,0 +1,27 @@ +EXPORTS + iuplua_open + iuplua_close + iuplua_plugstate + iuplua_getstate + iuplua_checkihandle + iuplua_checkihandle_array + iuplua_call + iuplua_call_rs + iuplua_call_raw + iuplua_pushihandle + iuplua_pushihandle_raw + iuplua_dofile + iuplua_dostring + iupkey_open + iuplua_returnEnv + iuplua_changeEnv + iuplua_opencall_internal + luaopen_iuplua + luaopen_iuplua51 + iuplua_register + iuplua_regstring + iuplua_checkstring_array + iuplua_checkint_array + iuplua_call_start + iuplua_register_cb +
\ No newline at end of file diff --git a/iup/srclua5/iuplua51.dep b/iup/srclua5/iuplua51.dep new file mode 100644 index 0000000..ed11fe6 --- /dev/null +++ b/iup/srclua5/iuplua51.dep @@ -0,0 +1,177 @@ +$(OBJDIR)/iuplua.o: iuplua.c ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../src/iup_str.h ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iuplua.h il.h loh/iuplua_le64.loh \ + loh/constants_le64.loh +$(OBJDIR)/iuplua_api.o: iuplua_api.c ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iuplua.h il.h ../src/iup_attrib.h \ + ../src/iup_globalattrib.h ../src/iup_object.h ../src/iup_class.h \ + ../src/iup_table.h ../src/iup_classbase.h ../src/iup_str.h +$(OBJDIR)/il_tree_aux.o: il_tree_aux.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iupcontrols.h ../include/iuplua.h il.h \ + il_controls.h +$(OBJDIR)/il_scanf.o: il_scanf.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h ../src/iup_str.h \ + ../src/iup_predial.h +$(OBJDIR)/il_getparam.o: il_getparam.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h il_controls.h +$(OBJDIR)/il_getcolor.o: il_getcolor.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h il_controls.h +$(OBJDIR)/il_button.o: il_button.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/button_le64.loh +$(OBJDIR)/il_canvas.o: il_canvas.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/canvas_le64.loh +$(OBJDIR)/il_dialog.o: il_dialog.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/dialog_le64.loh +$(OBJDIR)/il_colordlg.o: il_colordlg.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/colordlg_le64.loh +$(OBJDIR)/il_clipboard.o: il_clipboard.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/clipboard_le64.loh +$(OBJDIR)/il_filedlg.o: il_filedlg.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/filedlg_le64.loh +$(OBJDIR)/il_fill.o: il_fill.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/fill_le64.loh +$(OBJDIR)/il_frame.o: il_frame.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/frame_le64.loh +$(OBJDIR)/il_hbox.o: il_hbox.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/hbox_le64.loh +$(OBJDIR)/il_normalizer.o: il_normalizer.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/normalizer_le64.loh +$(OBJDIR)/il_item.o: il_item.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/item_le64.loh +$(OBJDIR)/il_image.o: il_image.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/image_le64.loh +$(OBJDIR)/il_imagergb.o: il_imagergb.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/imagergb_le64.loh +$(OBJDIR)/il_imagergba.o: il_imagergba.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/imagergba_le64.loh +$(OBJDIR)/il_label.o: il_label.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/label_le64.loh +$(OBJDIR)/il_menu.o: il_menu.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/menu_le64.loh +$(OBJDIR)/il_multiline.o: il_multiline.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/multiline_le64.loh +$(OBJDIR)/il_list.o: il_list.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/list_le64.loh +$(OBJDIR)/il_separator.o: il_separator.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/separator_le64.loh +$(OBJDIR)/il_user.o: il_user.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/user_le64.loh +$(OBJDIR)/il_submenu.o: il_submenu.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/submenu_le64.loh +$(OBJDIR)/il_text.o: il_text.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/text_le64.loh +$(OBJDIR)/il_toggle.o: il_toggle.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/toggle_le64.loh +$(OBJDIR)/il_vbox.o: il_vbox.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/vbox_le64.loh +$(OBJDIR)/il_zbox.o: il_zbox.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/zbox_le64.loh +$(OBJDIR)/il_timer.o: il_timer.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/timer_le64.loh +$(OBJDIR)/il_sbox.o: il_sbox.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/sbox_le64.loh +$(OBJDIR)/il_spin.o: il_spin.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/spin_le64.loh +$(OBJDIR)/il_spinbox.o: il_spinbox.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/spinbox_le64.loh +$(OBJDIR)/il_cbox.o: il_cbox.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/cbox_le64.loh +$(OBJDIR)/il_messagedlg.o: il_messagedlg.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/messagedlg_le64.loh +$(OBJDIR)/il_radio.o: il_radio.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/radio_le64.loh +$(OBJDIR)/il_val.o: il_val.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/val_le64.loh +$(OBJDIR)/il_tabs.o: il_tabs.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/tabs_le64.loh +$(OBJDIR)/il_fontdlg.o: il_fontdlg.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/fontdlg_le64.loh +$(OBJDIR)/il_tree.o: il_tree.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/tree_le64.loh +$(OBJDIR)/il_progressbar.o: il_progressbar.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h il.h loh/progressbar_le64.loh diff --git a/iup/srclua5/iuplua_api.c b/iup/srclua5/iuplua_api.c new file mode 100755 index 0000000..8673442 --- /dev/null +++ b/iup/srclua5/iuplua_api.c @@ -0,0 +1,874 @@ +/** \file +* \brief IUP binding for Lua 5. +* +* See Copyright Notice in "iup.h" +*/ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include "iup.h" +#include "iupkey.h" + +#include <lua.h> +#include <lauxlib.h> + +#include "iuplua.h" +#include "il.h" + +#include "iup_attrib.h" +#include "iup_globalattrib.h" +#include "iup_object.h" +#include "iup_str.h" + + +static int SaveImageAsText(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L, 1); + const char *file_name = luaL_checkstring(L, 2); + const char *format = luaL_checkstring(L, 3); + const char *name = luaL_optstring(L, 4, NULL); + lua_pushboolean(L, IupSaveImageAsText(ih, file_name, format, name)); + return 1; +} + +static int Reparent(lua_State *L) +{ + lua_pushnumber(L, IupReparent(iuplua_checkihandle(L,1), + iuplua_checkihandle(L,2))); + return 1; +} + +static int Insert(lua_State *L) +{ + iuplua_pushihandle(L, IupInsert(iuplua_checkihandle(L,1), + iuplua_checkihandleornil(L,2), + iuplua_checkihandle(L,3))); + return 1; +} + +static int Append(lua_State *L) +{ + iuplua_pushihandle(L, IupAppend(iuplua_checkihandle(L,1), + iuplua_checkihandle(L,2))); + return 1; +} + +static int Destroy(lua_State *L) +{ + Ihandle* ih = iuplua_checkihandle(L,1); + iuplua_removeihandle(L, ih); + IupDestroy(ih); + return 0; +} + +static int Detach(lua_State *L) +{ + IupDetach(iuplua_checkihandle(L,1)); + return 0; +} + +static int Flush(lua_State *L) +{ + (void)L; /* not used */ + IupFlush(); + return 0; +} + +static int Version(lua_State *L) +{ + lua_pushstring(L, IupVersion()); + return 1; +} + +static int GetAttributeData (lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + const char *name = luaL_checkstring(L,2); + const char *value = IupGetAttribute(ih, name); + if (!value) + lua_pushnil(L); + else + lua_pushlightuserdata(L, (void*)value); + return 1; +} + +static int GetAttribute (lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + const char *name = luaL_checkstring(L,2); + const char *value = IupGetAttribute(ih, name); + if (!value || iupAttribIsInternal(name)) + lua_pushnil(L); + else + { + if (iupAttribIsPointer(ih, name)) + { + if (iupObjectCheck((Ihandle*)value)) + iuplua_pushihandle(L, (Ihandle*)value); + else + lua_pushlightuserdata(L, (void*)value); + } + else + lua_pushstring(L,value); + } + return 1; +} + +static int GetAttributes(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + const char *value = IupGetAttributes(ih); + lua_pushstring(L,value); + return 1; +} + +static int GetAllDialogs(lua_State *L) +{ + int i, max_n = luaL_checkint(L,1); + char **names = (char **) malloc (max_n * sizeof(char *)); + int n = IupGetAllDialogs(names, max_n); + lua_newtable(L); + for (i=0; i<n; i++) + { + lua_pushnumber(L,i+1); + lua_pushstring(L,names[i]); + lua_settable(L,-3); + } + lua_pushnumber(L,n); + free(names); + return 2; +} + +static int GetAllNames(lua_State *L) +{ + int i, max_n = luaL_checkint(L,1); + char **names = (char **) malloc (max_n * sizeof(char *)); + int n = IupGetAllNames(names,max_n); + lua_newtable(L); + for (i=0; i<n; i++) + { + lua_pushnumber(L,i+1); + lua_pushstring(L,names[i]); + lua_settable(L,-3); + } + lua_pushnumber(L,n); + free(names); + return 2; +} + +static int GetAllAttributes(lua_State *L) +{ + int i, max_n = luaL_checkint(L,2); + char **names = (char **) malloc (max_n * sizeof(char *)); + int n = IupGetAllAttributes(iuplua_checkihandle(L,1),names,max_n); + lua_newtable(L); + for (i=0; i<n; i++) + { + lua_pushnumber(L,i+1); + lua_pushstring(L,names[i]); + lua_settable(L,-3); + } + lua_pushnumber(L,n); + free(names); + return 2; +} + +static int GetClassAttributes(lua_State *L) +{ + int i, max_n = luaL_checkint(L,2); + char **names = (char **) malloc (max_n * sizeof(char *)); + int n = IupGetClassAttributes(luaL_checkstring(L,1),names,max_n); + + if (n == -1) + { + lua_pushnil(L); + return 1; + } + + lua_newtable(L); + for (i=0; i<n; i++) + { + lua_pushnumber(L,i+1); + lua_pushstring(L,names[i]); + lua_settable(L,-3); + } + lua_pushnumber(L,n); + free(names); + return 2; +} + +static int SetClassDefaultAttribute(lua_State *L) +{ + IupSetClassDefaultAttribute(luaL_checkstring(L,1), luaL_checkstring(L,2), luaL_optstring(L,3,NULL)); + return 0; +} + +static int GetDialog(lua_State *L) +{ + iuplua_pushihandle(L, IupGetDialog(iuplua_checkihandle(L,1))); + return 1; +} + +static int GetFile (lua_State *L) +{ + const char *fname = luaL_checkstring(L,1); + char returned_fname[10240]; + int ret; + iupStrCopyN(returned_fname, 10240, fname); + ret = IupGetFile(returned_fname); + lua_pushstring(L, returned_fname); + lua_pushnumber(L, ret); + return 2; +} + +static int GetFocus(lua_State *L) +{ + iuplua_pushihandle(L, IupGetFocus()); + return 1; +} + +static int GetClassName(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L, 1); + lua_pushstring(L, IupGetClassName(ih)); + return 1; +} + +static int GetClassType(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L, 1); + lua_pushstring(L, IupGetClassType(ih)); + return 1; +} + +static int GetGlobal(lua_State *L) +{ + const char *a = luaL_checkstring(L,1); + const char *v = IupGetGlobal(a); + if (iupGlobalIsPointer(a)) + lua_pushlightuserdata(L, (void*)v); + else + lua_pushstring(L,v); + return 1; +} + +static int GetHandle(lua_State *L) +{ + const char *name = luaL_checkstring(L,1); + Ihandle *ih = IupGetHandle(name); + iuplua_pushihandle(L,ih); + return 1; +} + +static int GetLanguage (lua_State *L) +{ + char * value = IupGetLanguage(); + lua_pushstring(L,value); + return 1; +} + +static int GetName(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + char * name = IupGetName(ih); + lua_pushstring(L,name); + return 1; +} + +static int Help(lua_State *L) +{ + const char *url = luaL_checkstring(L,1); + IupHelp(url); + return 0; +} + +static int Hide(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + lua_pushnumber(L, IupHide(ih)); + return 1; +} + +static int Load(lua_State *L) +{ + const char *s = luaL_checkstring(L,1); + const char *r = IupLoad(s); + lua_pushstring(L,r); + return 1; +} + +static int LoadBuffer(lua_State *L) +{ + const char *s = luaL_checkstring(L,1); + const char *r = IupLoadBuffer(s); + lua_pushstring(L,r); + return 1; +} + +static int LoopStep(lua_State *L) +{ + lua_pushnumber(L,IupLoopStep()); + return 1; +} + +static int ExitLoop(lua_State *L) +{ + (void)L; + IupExitLoop(); + return 0; +} + +static int MainLoop(lua_State *L) +{ + lua_pushnumber(L,IupMainLoop()); + return 1; +} + +static int MainLoopLevel(lua_State *L) +{ + lua_pushnumber(L,IupMainLoopLevel()); + return 1; +} + +static int Map(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + lua_pushnumber(L, IupMap(ih)); + return 1; +} + +static int Unmap(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupUnmap(ih); + return 0; +} + +static int MapFont(lua_State *L) +{ + const char *font = luaL_checkstring(L,1); + const char *nfont = IupMapFont(font); + lua_pushstring(L, nfont); + return 1; +} + +static int Message(lua_State *L) +{ + const char *title = luaL_checkstring(L,1); + const char *message = luaL_checkstring(L,2); + IupMessage(title, message); + return 0; +} + +static int Alarm(lua_State *L) +{ + int n = IupAlarm(luaL_checkstring(L, 1), + luaL_checkstring(L, 2), + luaL_checkstring(L, 3), + luaL_optstring(L, 4, NULL), + luaL_optstring(L, 5, NULL)); + lua_pushnumber(L, n); + return 1; +} + +static int ListDialog(lua_State *L) +{ + int type = luaL_checkint(L,1); + int size = luaL_checkint(L,3); + char** list = iuplua_checkstring_array(L, 4); + int* marks = lua_isnoneornil(L, 8)? NULL: iuplua_checkint_array(L,8); + int i, ret; + + if (size != luaL_getn(L, 4)) + luaL_error(L, "invalid number of elements in the list."); + if (!marks && type==2) + luaL_error(L, "invalid marks, must not be nil."); + if (marks && type==2 && size != luaL_getn(L, 8)) + luaL_error(L, "invalid number of elements in the marks."); + + ret = IupListDialog(type, luaL_checkstring(L, 2), + size, + list, + luaL_checkint(L, 5), + luaL_checkint(L, 6), + luaL_checkint(L, 7), + marks); + + if (marks && type==2 && ret!=-1) + { + for (i=0; i<size; i++) + { + lua_pushnumber(L, i+1); + lua_pushnumber(L, marks[i]); + lua_settable(L, 8); + } + } + + lua_pushnumber(L, ret); + + if (marks) free(marks); + free(list); + + return 1; +} + +static int GetText(lua_State *L) +{ + char buffer[10240]; + const char *title = luaL_checkstring(L,1); + const char *text = luaL_checkstring(L,2); + iupStrCopyN(buffer, 10240, text); + if (IupGetText(title, buffer)) + { + lua_pushstring(L, buffer); + return 1; + } + return 0; +} + +static int NextField(lua_State *L) +{ + Ihandle *h1 = iuplua_checkihandle(L,1); + Ihandle *h2 = IupNextField(h1); + iuplua_pushihandle(L,h2); + return 1; +} + +static int PreviousField(lua_State *L) +{ + Ihandle *h1 = iuplua_checkihandle(L,1); + Ihandle *h2 = IupNextField(h1); + iuplua_pushihandle(L,h2); + return 1; +} + +static int Popup(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int x = luaL_optint(L,2, IUP_CURRENT); + int y = luaL_optint(L,3, IUP_CURRENT); + lua_pushnumber(L,IupPopup(ih,x,y)); + return 1; +} + +static int cf_isprint(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushnumber(L, iup_isprint(value)); + return 1; +} + +static int cf_xCODE(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushnumber(L, IUPxCODE(value)); + return 1; +} + +static int cf_isxkey(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushboolean(L, iup_isXkey(value)); + return 1; +} + +static int cf_isShiftXkey(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushboolean(L, iup_isShiftXkey(value)); + return 1; +} + +static int cf_isCtrlXkey(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushboolean(L, iup_isCtrlXkey(value)); + return 1; +} + +static int cf_isAltXkey(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushboolean(L, iup_isAltXkey(value)); + return 1; +} + +static int cf_isSysXkey(lua_State *L) +{ + int value = luaL_checkint(L, 1); + lua_pushboolean(L, iup_isSysXkey(value)); + return 1; +} + +static int cf_isbutton1(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isbutton1(value)); + return 1; +} + +static int cf_isbutton2(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isbutton2(value)); + return 1; +} + +static int cf_isbutton3(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isbutton3(value)); + return 1; +} + +static int cf_isshift(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isshift(value)); + return 1; +} + +static int cf_iscontrol(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_iscontrol(value)); + return 1; +} + +static int cf_isdouble(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isdouble(value)); + return 1; +} + +static int cf_isalt(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isalt(value)); + return 1; +} + +static int cf_issys(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_issys(value)); + return 1; +} + +static int cf_isbutton4(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isbutton4(value)); + return 1; +} + +static int cf_isbutton5(lua_State *L) +{ + const char *value = luaL_checkstring(L, 1); + lua_pushboolean(L, iup_isbutton5(value)); + return 1; +} + +static int GetParent(lua_State *L) +{ + Ihandle * ih = iuplua_checkihandle(L,1); + Ihandle * parent = IupGetParent(ih); + iuplua_pushihandle(L, parent); + return 1; +} + +static int VersionNumber(lua_State *L) +{ + lua_pushnumber(L, IupVersionNumber()); + return 1; +} + +static int GetNextChild(lua_State *L) +{ + Ihandle* parent = iuplua_checkihandle(L,1); + Ihandle* next = iuplua_checkihandleornil(L,2); + Ihandle* nextchild = IupGetNextChild(parent, next); + iuplua_pushihandle(L, nextchild); + return 1; +} + +static int GetChildPos(lua_State *L) +{ + Ihandle* ih = iuplua_checkihandle(L,1); + Ihandle* child = iuplua_checkihandle(L,2); + lua_pushnumber(L, IupGetChildPos(ih, child)); + return 1; +} + +static int GetBrother(lua_State *L) +{ + Ihandle * ih = iuplua_checkihandle(L,1); + Ihandle * brother = IupGetBrother(ih); + iuplua_pushihandle(L, brother); + return 1; +} + +static int GetDialogChild(lua_State *L) +{ + Ihandle * ih = iuplua_checkihandle(L,1); + const char* name = luaL_checkstring(L,2); + Ihandle * child = IupGetDialogChild(ih, name); + iuplua_pushihandle(L, child); + return 1; +} + +static int ConvertXYToPos(lua_State *L) +{ + lua_pushinteger(L, IupConvertXYToPos(iuplua_checkihandle(L,1), luaL_checkinteger(L, 2), luaL_checkinteger(L, 3))); + return 1; +} + +static int TextConvertLinColToPos(lua_State *L) +{ + int pos; + IupTextConvertLinColToPos(iuplua_checkihandle(L,1), luaL_checkinteger(L, 2), luaL_checkinteger(L, 3), &pos); + lua_pushinteger(L, pos); + return 1; +} + +static int TextConvertPosToLinCol(lua_State *L) +{ + int lin, col; + IupTextConvertPosToLinCol(iuplua_checkihandle(L,1), luaL_checkinteger(L, 2), &lin, &col); + lua_pushinteger(L, lin); + lua_pushinteger(L, col); + return 2; +} + +static int SetAttributes(lua_State *L) +{ + Ihandle * ih = iuplua_checkihandle(L,1); + const char *attributes = luaL_checkstring(L,2); + IupSetAttributes(ih, attributes); + iuplua_pushihandle(L,ih); + return 1; +} + +static int SetFocus(lua_State *L) +{ + Ihandle *h1 = iuplua_checkihandle(L,1); + Ihandle *h2 = IupSetFocus(h1); + iuplua_pushihandle(L,h2); + return 1; +} + +static int SetGlobal(lua_State *L) +{ + const char *a = luaL_checkstring(L,1); + const char *v = luaL_checkstring(L,2); + IupSetGlobal(a,v); + return 0; +} + +static int SetHandle(lua_State *L) +{ + const char *name = luaL_checkstring(L,1); + Ihandle *ih = iuplua_checkihandle(L,2); + Ihandle *last = IupSetHandle(name, ih); + iuplua_pushihandle(L, last); + return 1; +} + +static int SetLanguage(lua_State *L) +{ + IupSetLanguage(luaL_checkstring(L,1)); + return 0; +} + +static int GetChildCount (lua_State *L) +{ + lua_pushnumber(L, IupGetChildCount(iuplua_checkihandle(L,1))); + return 1; +} + +static int Show (lua_State *L) +{ + lua_pushnumber(L, IupShow(iuplua_checkihandle(L,1))); + return 1; +} + +static int Refresh (lua_State *L) +{ + IupRefresh(iuplua_checkihandle(L,1)); + return 0; +} + +static int Update (lua_State *L) +{ + IupUpdate(iuplua_checkihandle(L,1)); + return 0; +} + +static int UpdateChildren (lua_State *L) +{ + IupUpdateChildren(iuplua_checkihandle(L,1)); + return 0; +} + +static int Redraw(lua_State *L) +{ + IupRedraw(iuplua_checkihandle(L,1), luaL_checkinteger(L, 2)); + return 0; +} + +static int ShowXY(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int x = luaL_optint(L,2, IUP_CURRENT); + int y = luaL_optint(L,3, IUP_CURRENT); + lua_pushnumber(L,IupShowXY(ih,x,y)); + return 1; +} + +static int StoreAttribute(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + const char *a = luaL_checkstring(L,2); + + if (lua_isnil(L,3)) + IupSetAttribute(ih,a,NULL); + else + { + const char *v; + if(lua_isuserdata(L,3)) + { + v = lua_touserdata(L,3); + IupSetAttribute(ih,a,v); + } + else + { + v = luaL_checkstring(L,3); + IupStoreAttribute(ih,a,v); + } + } + return 0; +} + +static int StoreGlobal(lua_State *L) +{ + const char *a = luaL_checkstring(L,1); + const char *v = luaL_checkstring(L,2); + IupStoreGlobal(a,v); + return 0; +} + +static int UnMapFont (lua_State *L) +{ + const char *s = luaL_checkstring(L,1); + const char *n = IupUnMapFont(s); + lua_pushstring(L,n); + return 1; +} + + +/***************************************************************************** +* iupluaapi_open * +****************************************************************************/ + + +int iupluaapi_open(lua_State * L) +{ + struct luaL_reg funcs[] = { + {"Append", Append}, + {"Insert", Insert}, + {"Reparent", Reparent}, + {"Destroy", Destroy}, + {"Detach", Detach}, + {"Flush", Flush}, + {"Version", Version}, + {"GetAttribute", GetAttribute}, + {"GetAttributeData", GetAttributeData}, + {"GetAttributes", GetAttributes}, + {"GetAllAttributes", GetAllAttributes}, + {"SetClassDefaultAttribute", SetClassDefaultAttribute}, + {"GetClassAttributes", GetClassAttributes}, + {"GetAllDialogs", GetAllDialogs}, + {"GetAllNames", GetAllNames}, + {"GetDialog", GetDialog}, + {"GetFile", GetFile}, + {"GetFocus", GetFocus}, + {"GetClassName", GetClassName}, + {"GetClassType", GetClassType}, + {"GetGlobal", GetGlobal}, + {"GetHandle", GetHandle}, + {"GetLanguage", GetLanguage}, + {"GetName", GetName}, + {"Help", Help}, + {"Hide", Hide}, + {"Load", Load}, + {"LoadBuffer", LoadBuffer}, + {"LoopStep", LoopStep}, + {"ExitLoop", ExitLoop}, + {"MainLoop", MainLoop}, + {"MainLoopLevel", MainLoopLevel}, + {"Map", Map}, + {"Unmap", Unmap}, + {"MapFont", MapFont}, + {"Message", Message}, + {"Alarm", Alarm}, + {"ListDialog", ListDialog}, + {"GetText", GetText}, + {"NextField", NextField}, + {"Popup", Popup}, + {"PreviousField", PreviousField}, + {"SetAttribute", StoreAttribute}, + {"SetAttributes", SetAttributes}, + {"isbutton1", cf_isbutton1}, + {"isbutton2", cf_isbutton2}, + {"isbutton3", cf_isbutton3}, + {"isshift", cf_isshift}, + {"iscontrol", cf_iscontrol}, + {"isdouble", cf_isdouble}, + {"isalt", cf_isalt}, + {"issys", cf_issys}, + {"isbutton4", cf_isbutton4}, + {"isbutton5", cf_isbutton5}, + {"GetParent", GetParent}, + {"GetNextChild", GetNextChild}, + {"GetChildPos", GetChildPos}, + {"VersionNumber", VersionNumber}, + {"GetBrother", GetBrother}, + {"GetDialogChild", GetDialogChild}, + {"SetFocus", SetFocus}, + {"SetGlobal", SetGlobal}, + {"SetHandle", SetHandle}, + {"SetLanguage", SetLanguage}, + {"Show", Show}, + {"GetChildCount", GetChildCount}, + {"Refresh", Refresh}, + {"Update", Update}, + {"UpdateChildren", UpdateChildren}, + {"SaveImageAsText", SaveImageAsText}, + {"Redraw", Redraw}, + {"ShowXY", ShowXY}, + {"StoreAttribute", StoreAttribute}, + {"StoreGlobal", StoreGlobal}, + {"UnMapFont", UnMapFont}, + {"Scanf", iupluaScanf}, + {"isprint", cf_isprint}, + {"IUPxCODE", cf_xCODE}, + {"isxkey", cf_isxkey}, + {"isXkey", cf_isxkey}, + {"isShiftXkey", cf_isShiftXkey}, + {"isCtrlXkey", cf_isCtrlXkey}, + {"isAltXkey", cf_isAltXkey}, + {"isSysXkey", cf_isSysXkey}, + {"TextConvertLinColToPos", TextConvertLinColToPos}, + {"TextConvertPosToLinCol", TextConvertPosToLinCol}, + {"ConvertXYToPos", ConvertXYToPos}, + {NULL, NULL}, + }; + + /* Registers functions in iup namespace */ + luaL_openlib(L, NULL, funcs, 0); + + return 0; /* nothing in stack */ +} diff --git a/iup/srclua5/iuplua_cd.c b/iup/srclua5/iuplua_cd.c new file mode 100755 index 0000000..c14932a --- /dev/null +++ b/iup/srclua5/iuplua_cd.c @@ -0,0 +1,56 @@ +/** \file + * \brief IUP Canvas Lua 5 Binding + * + * See Copyright Notice in cd.h + */ + +#include <stdlib.h> +#include <stdio.h> + +#include <cd.h> +#include <cdiup.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" + +#include <cdlua.h> +#include <cdluaiup.h> +#include <cdlua5_private.h> + + +static void *cdiup_checkdata(lua_State *L, int param) +{ + return iuplua_checkihandle(L, param); +} + +static cdluaContext cdluaiupctx = +{ + 0, + "IUP", + cdContextIup, + cdiup_checkdata, + NULL, + 0 +}; + +int cdluaiup_open (lua_State *L) +{ + cdluaLuaState* cdL = cdlua_getstate(L); + lua_pushstring(L, "cd"); + lua_gettable(L, LUA_GLOBALSINDEX); /* leave "cd" table at the top of the stack */ + cdlua_addcontext(L, cdL, &cdluaiupctx); + return 1; +} + +int luaopen_iupluacd(lua_State* L) +{ + return cdluaiup_open(L); +} + +int luaopen_iupluacd51(lua_State* L) +{ + return cdluaiup_open(L); +} diff --git a/iup/srclua5/iuplua_controls.c b/iup/srclua5/iuplua_controls.c new file mode 100755 index 0000000..bd961bf --- /dev/null +++ b/iup/srclua5/iuplua_controls.c @@ -0,0 +1,55 @@ +/** \file + * \brief Bindig of iupcontrols to Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <lua.h> +#include <lualib.h> + +#include "iup.h" +#include "iupcontrols.h" + +#include "iuplua.h" +#include "iupluacontrols.h" +#include "il.h" +#include "il_controls.h" + +int iupcontrolslua_open(lua_State * L) +{ + if (iuplua_opencall_internal(L)) + IupControlsOpen(); + + iuplua_changeEnv(L); + + iupgaugelua_open(L); + iupmatrixlua_open(L); + iupmasklua_open(L); + iupdiallua_open(L); + iupcolorbrowserlua_open(L); + iupcellslua_open(L); + iupcolorbarlua_open(L); + + iuplua_returnEnv(L); + + return 0; +} + +int iupcontrolslua_close(lua_State * L) +{ + if (iuplua_opencall_internal(L)) + IupControlsClose(); + return 0; +} + +/* obligatory to use require"iupluacontrols" */ +int luaopen_iupluacontrols(lua_State* L) +{ + return iupcontrolslua_open(L); +} + +/* obligatory to use require"iupluacontrols51" */ +int luaopen_iupluacontrols51(lua_State* L) +{ + return iupcontrolslua_open(L); +} diff --git a/iup/srclua5/iuplua_glcanvas.c b/iup/srclua5/iuplua_glcanvas.c new file mode 100755 index 0000000..c50ba8f --- /dev/null +++ b/iup/srclua5/iuplua_glcanvas.c @@ -0,0 +1,82 @@ +/** \file + * \brief iupgl binding for Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iupgl.h" + +#include "iuplua.h" +#include "iupluagl.h" +#include "il.h" + +#ifdef _WIN32 +#include <windows.h> +#endif +#include <GL/gl.h> + +static int GLIsCurrent(lua_State *L) +{ + lua_pushboolean(L, IupGLIsCurrent(iuplua_checkihandle(L,1))); + return 1; +} + +static int GLMakeCurrent(lua_State *L) +{ + IupGLMakeCurrent(iuplua_checkihandle(L,1)); + + iuplua_changeEnv(L); + iuplua_regstring(L, (const char*)glGetString(GL_VENDOR), "GL_VENDOR"); + iuplua_regstring(L, (const char*)glGetString(GL_RENDERER), "GL_RENDERER"); + iuplua_regstring(L, (const char*)glGetString(GL_VERSION), "GL_VERSION"); + iuplua_returnEnv(L); + + return 0; +} + +static int GLSwapBuffers(lua_State *L) +{ + IupGLSwapBuffers(iuplua_checkihandle(L,1)); + return 0; +} + +static int GLPalette(lua_State *L) +{ + Ihandle *self = iuplua_checkihandle(L,1); + int index = luaL_checkint(L,2); + float r = (float)luaL_checknumber(L,3); + float g = (float)luaL_checknumber(L,4); + float b = (float)luaL_checknumber(L,5); + IupGLPalette(self, index, r, g, b); + return 0; +} + +static int GLUseFont(lua_State *L) +{ + Ihandle *self = iuplua_checkihandle(L,1); + int first = luaL_checkint(L,2); + int count = luaL_checkint(L,3); + int list_base = luaL_checkint(L,4); + IupGLUseFont(self, first, count, list_base); + return 0; +} + +static int GLWait(lua_State *L) +{ + IupGLWait(luaL_checkint(L,1)); + return 0; +} + +void iuplua_glcanvasfuncs_open (lua_State *L) +{ + iuplua_register(L, GLSwapBuffers, "GLSwapBuffers"); + iuplua_register(L, GLIsCurrent, "GLIsCurrent"); + iuplua_register(L, GLMakeCurrent, "GLMakeCurrent"); + iuplua_register(L, GLPalette, "GLPalette"); + iuplua_register(L, GLUseFont, "GLUseFont"); + iuplua_register(L, GLWait, "GLWait"); +} diff --git a/iup/srclua5/iuplua_im.c b/iup/srclua5/iuplua_im.c new file mode 100755 index 0000000..b700e1a --- /dev/null +++ b/iup/srclua5/iuplua_im.c @@ -0,0 +1,54 @@ +/** \file + * \brief IULUA core - Bindig of iup to Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include "iup.h" +#include "iupim.h" + +#include <lua.h> +#include <lauxlib.h> + +#include "iuplua.h" +#include "iupluaim.h" +#include "il.h" + +static int SaveImage(lua_State *L) +{ + Ihandle *image = iuplua_checkihandle(L,1); + const char *filename = luaL_checkstring(L, 2); + const char *format = luaL_checkstring(L, 3); + lua_pushboolean(L, IupSaveImage(image, filename, format)); + return 1; +} + +static int LoadImage(lua_State *L) +{ + const char *filename = luaL_checkstring(L, 1); + Ihandle* image = IupLoadImage(filename); + iuplua_plugstate(L, image); + iuplua_pushihandle(L, image); + return 1; +} + +int iupimlua_open(lua_State *L) +{ + iuplua_changeEnv(L); + iuplua_register(L, LoadImage, "LoadImage"); + iuplua_register(L, SaveImage, "SaveImage"); + iuplua_returnEnv(L); + return 0; /* nothing in stack */ +} + +/* obligatory to use require"iupluaim" */ +int luaopen_iupluaim(lua_State* L) +{ + return iupimlua_open(L); +} + +/* obligatory to use require"iupluaim51" */ +int luaopen_iupluaim51(lua_State* L) +{ + return iupimlua_open(L); +} diff --git a/iup/srclua5/iuplua_imglib.c b/iup/srclua5/iuplua_imglib.c new file mode 100755 index 0000000..bece6d5 --- /dev/null +++ b/iup/srclua5/iuplua_imglib.c @@ -0,0 +1,44 @@ +/** \file + * \brief Iup Image Library Lua 5 Binding + * + * See Copyright Notice in cd.h + */ + +#include <stdlib.h> +#include <stdio.h> + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iuplua.h" +#include "iupcontrols.h" +#include "il.h" + + +static int imagelibopen(lua_State *L) +{ + (void)L; + IupImageLibOpen(); + return 0; +} + +static int iupluaimglib_open (lua_State *L) +{ + IupImageLibOpen(); + + iuplua_changeEnv(L); + iuplua_register(L, imagelibopen, "ImageLibOpen"); + iuplua_returnEnv(L); + return 0; /* nothing in stack */ +} + +int luaopen_iupluaimglib(lua_State* L) +{ + return iupluaimglib_open(L); +} + +int luaopen_iupluaimglib51(lua_State* L) +{ + return iupluaimglib_open(L); +} diff --git a/iup/srclua5/iuplua_pplot.c b/iup/srclua5/iuplua_pplot.c new file mode 100755 index 0000000..08b04bd --- /dev/null +++ b/iup/srclua5/iuplua_pplot.c @@ -0,0 +1,159 @@ +/** \file + * \brief pplot binding for Lua 5. + * + * See Copyright Notice in "iup.h" + */ + +#include <lua.h> +#include <lauxlib.h> + +#include "iup.h" +#include "iup_pplot.h" + +#include <cd.h> +#include <cdlua.h> + +#include "iuplua.h" +#include "iuplua_pplot.h" +#include "il.h" + + +static int pplot_edit_cb(Ihandle *self, int p0, int p1, float p2, float p3, float *p4, float *p5) +{ + int ret; + lua_State *L = iuplua_call_start(self, "edit_cb"); + lua_pushnumber(L, p0); + lua_pushnumber(L, p1); + lua_pushnumber(L, p2); + lua_pushnumber(L, p3); + ret = iuplua_call_raw(L, 4+2, LUA_MULTRET); /* 4 args + 2 args(errormsg, handle), variable number of returns */ + if (ret || lua_isnil(L, -1)) + return IUP_DEFAULT; + ret = (int)lua_tonumber(L,-1); + + if (ret == IUP_IGNORE) + { + lua_pop(L, 1); + return IUP_IGNORE; + } + + *p4 = (float)lua_tonumber(L, -3); + *p5 = (float)lua_tonumber(L, -2); + lua_pop(L, 1); + return IUP_DEFAULT; +} + +static int pplot_postdraw_cb(Ihandle *self, cdCanvas* cnv) +{ + lua_State *L = iuplua_call_start(self, "postdraw_cb"); + cdlua_pushcanvas(L, cnv); + return iuplua_call(L, 1); +} + +static int pplot_predraw_cb(Ihandle *self, cdCanvas* cnv) +{ + lua_State *L = iuplua_call_start(self, "predraw_cb"); + cdlua_pushcanvas(L, cnv); + return iuplua_call(L, 1); +} + +static int PPlotBegin(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupPPlotBegin(ih, luaL_checkint(L,2)); + return 0; +} + +static int PPlotAdd(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupPPlotAdd(ih, (float)luaL_checknumber(L,2), (float)luaL_checknumber(L,3)); + return 0; +} + +static int PPlotAddStr(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupPPlotAddStr(ih, luaL_checkstring(L,2), (float)luaL_checknumber(L,3)); + return 0; +} + +static int PPlotEnd(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int ret = IupPPlotEnd(ih); + lua_pushnumber(L, ret); + return 1; +} + +static int PPlotInsertStr(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupPPlotInsertStr(ih, luaL_checkint(L,2), luaL_checkint(L,3), luaL_checkstring(L,4), (float)luaL_checknumber(L,5)); + return 0; +} + +static int PPlotInsert(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupPPlotInsert(ih, luaL_checkint(L,2), luaL_checkint(L,3), (float)luaL_checknumber(L,4), (float)luaL_checknumber(L,5)); + return 0; +} + +static int PPlotTransform(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + int ix, iy; + IupPPlotTransform(ih, (float)luaL_checknumber(L,2), (float)luaL_checknumber(L,3), &ix, &iy); + lua_pushnumber(L, ix); + lua_pushnumber(L, iy); + return 2; +} + +static int PPlotPaintTo(lua_State *L) +{ + Ihandle *ih = iuplua_checkihandle(L,1); + IupPPlotPaintTo(ih, cdlua_checkcanvas(L,2)); + return 0; +} + +void iuplua_pplotfuncs_open (lua_State *L) +{ + iuplua_register_cb(L, "EDIT_CB", (lua_CFunction)pplot_edit_cb, "pplot"); + iuplua_register_cb(L, "PREDRAW_CB", (lua_CFunction)pplot_predraw_cb, NULL); + iuplua_register_cb(L, "POSTDRAW_CB", (lua_CFunction)pplot_postdraw_cb, NULL); + + iuplua_register(L, PPlotBegin ,"PPlotBegin"); + iuplua_register(L, PPlotAdd ,"PPlotAdd"); + iuplua_register(L, PPlotAddStr ,"PPlotAddStr"); + iuplua_register(L, PPlotEnd ,"PPlotEnd"); + iuplua_register(L, PPlotInsertStr ,"PPlotInsertStr"); + iuplua_register(L, PPlotInsert ,"PPlotInsert"); + iuplua_register(L, PPlotTransform ,"PPlotTransform"); + iuplua_register(L, PPlotPaintTo ,"PPlotPaintTo"); +} + +int iuppplotlua_open(lua_State * L); + +int iup_pplotlua_open(lua_State * L) +{ + if (iuplua_opencall_internal(L)) + IupPPlotOpen(); + + iuplua_changeEnv(L); + iuppplotlua_open(L); + iuplua_returnEnv(L); + return 0; +} + +/* obligatory to use require"iuplua_pplot" */ +int luaopen_iuplua_pplot(lua_State* L) +{ + return iup_pplotlua_open(L); +} + +/* obligatory to use require"iuplua_pplot51" */ +int luaopen_iuplua_pplot51(lua_State* L) +{ + return iup_pplotlua_open(L); +} diff --git a/iup/srclua5/iuplua_pplot5.def b/iup/srclua5/iuplua_pplot5.def new file mode 100755 index 0000000..3b2ce41 --- /dev/null +++ b/iup/srclua5/iuplua_pplot5.def @@ -0,0 +1,4 @@ +EXPORTS + iup_pplotlua_open + luaopen_iuplua_pplot + luaopen_iuplua_pplot51 diff --git a/iup/srclua5/iuplua_pplot51.dep b/iup/srclua5/iuplua_pplot51.dep new file mode 100644 index 0000000..ed004dc --- /dev/null +++ b/iup/srclua5/iuplua_pplot51.dep @@ -0,0 +1,11 @@ +$(OBJDIR)/iuplua_pplot.o: iuplua_pplot.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iup_pplot.h ../../cd/include/cd.h \ + ../../cd/include/cd_old.h ../../cd/include/cdlua.h ../include/iuplua.h \ + ../include/iuplua_pplot.h il.h +$(OBJDIR)/il_pplot.o: il_pplot.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iup_pplot.h il.h \ + loh/pplot_le64.loh diff --git a/iup/srclua5/iupluacd5.def b/iup/srclua5/iupluacd5.def new file mode 100755 index 0000000..c56c231 --- /dev/null +++ b/iup/srclua5/iupluacd5.def @@ -0,0 +1,4 @@ +EXPORTS + cdluaiup_open + luaopen_iupluacd + luaopen_iupluacd51
\ No newline at end of file diff --git a/iup/srclua5/iupluacd51.dep b/iup/srclua5/iupluacd51.dep new file mode 100644 index 0000000..1378e85 --- /dev/null +++ b/iup/srclua5/iupluacd51.dep @@ -0,0 +1,6 @@ +$(OBJDIR)/iuplua_cd.o: iuplua_cd.c ../../cd/include/cd.h ../../cd/include/cdiup.h \ + ../../lua5.1/include/lua.h ../../lua5.1/include/luaconf.h \ + ../../lua5.1/include/lauxlib.h ../../lua5.1/include/lua.h \ + ../include/iup.h ../include/iupkey.h ../include/iupdef.h \ + ../include/iuplua.h ../../cd/include/cdlua.h \ + ../../cd/include/cdluaiup.h ../../cd/include/cdlua5_private.h diff --git a/iup/srclua5/iupluacontrols5.def b/iup/srclua5/iupluacontrols5.def new file mode 100755 index 0000000..0317d30 --- /dev/null +++ b/iup/srclua5/iupluacontrols5.def @@ -0,0 +1,6 @@ +EXPORTS + iupcontrolslua_open + iupcontrolslua_close + luaopen_iupluacontrols + luaopen_iupluacontrols51 +
\ No newline at end of file diff --git a/iup/srclua5/iupluacontrols51.dep b/iup/srclua5/iupluacontrols51.dep new file mode 100644 index 0000000..d020fd9 --- /dev/null +++ b/iup/srclua5/iupluacontrols51.dep @@ -0,0 +1,46 @@ +$(OBJDIR)/iuplua_controls.o: iuplua_controls.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lualib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iupcontrols.h ../include/iuplua.h \ + ../include/iupluacontrols.h il.h il_controls.h +$(OBJDIR)/il_mask.o: il_mask.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iupmask.h ../include/iuplua.h il.h \ + il_controls.h +$(OBJDIR)/il_matrix_aux.o: il_matrix_aux.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iupcontrols.h ../../cd/include/cd.h \ + ../../cd/include/cd_old.h ../../cd/include/cdlua.h ../include/iuplua.h \ + il.h il_controls.h +$(OBJDIR)/il_dial.o: il_dial.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h \ + loh/dial_le64.loh +$(OBJDIR)/il_gauge.o: il_gauge.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h \ + loh/gauge_le64.loh +$(OBJDIR)/il_colorbrowser.o: il_colorbrowser.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h \ + loh/colorbrowser_le64.loh +$(OBJDIR)/il_colorbar.o: il_colorbar.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h \ + loh/colorbar_le64.loh +$(OBJDIR)/il_matrix.o: il_matrix.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h \ + loh/matrix_le64.loh +$(OBJDIR)/il_cells.o: il_cells.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h \ + loh/cells_le64.loh diff --git a/iup/srclua5/iupluagl5.def b/iup/srclua5/iupluagl5.def new file mode 100755 index 0000000..577d9cf --- /dev/null +++ b/iup/srclua5/iupluagl5.def @@ -0,0 +1,5 @@ +EXPORTS + iupgllua_open + luaopen_iupluagl + luaopen_iupluagl51 +
\ No newline at end of file diff --git a/iup/srclua5/iupluagl51.dep b/iup/srclua5/iupluagl51.dep new file mode 100644 index 0000000..592207a --- /dev/null +++ b/iup/srclua5/iupluagl51.dep @@ -0,0 +1,10 @@ +$(OBJDIR)/iuplua_glcanvas.o: iuplua_glcanvas.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iupgl.h ../include/iuplua.h \ + ../include/iupluagl.h il.h +$(OBJDIR)/il_glcanvas.o: il_glcanvas.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupgl.h il.h \ + loh/glcanvas_le64.loh diff --git a/iup/srclua5/iupluaim5.def b/iup/srclua5/iupluaim5.def new file mode 100755 index 0000000..063df5a --- /dev/null +++ b/iup/srclua5/iupluaim5.def @@ -0,0 +1,5 @@ +EXPORTS + iupimlua_open + luaopen_iupluaim + luaopen_iupluaim51 +
\ No newline at end of file diff --git a/iup/srclua5/iupluaim51.dep b/iup/srclua5/iupluaim51.dep new file mode 100644 index 0000000..488ebfa --- /dev/null +++ b/iup/srclua5/iupluaim51.dep @@ -0,0 +1,5 @@ +$(OBJDIR)/iuplua_im.o: iuplua_im.c ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iupim.h ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iuplua.h ../include/iupluaim.h \ + il.h diff --git a/iup/srclua5/iupluaimglib5.def b/iup/srclua5/iupluaimglib5.def new file mode 100755 index 0000000..134abb7 --- /dev/null +++ b/iup/srclua5/iupluaimglib5.def @@ -0,0 +1,4 @@ +EXPORTS + luaopen_iupluaimglib + luaopen_iupluaimglib51 +
\ No newline at end of file diff --git a/iup/srclua5/iupluaimglib51.dep b/iup/srclua5/iupluaimglib51.dep new file mode 100644 index 0000000..cbbc352 --- /dev/null +++ b/iup/srclua5/iupluaimglib51.dep @@ -0,0 +1,4 @@ +$(OBJDIR)/iuplua_imglib.o: iuplua_imglib.c ../../lua5.1/include/lua.h \ + ../../lua5.1/include/luaconf.h ../../lua5.1/include/lauxlib.h \ + ../../lua5.1/include/lua.h ../include/iup.h ../include/iupkey.h \ + ../include/iupdef.h ../include/iuplua.h ../include/iupcontrols.h il.h diff --git a/iup/srclua5/iupluaole5.def b/iup/srclua5/iupluaole5.def new file mode 100755 index 0000000..ab781ed --- /dev/null +++ b/iup/srclua5/iupluaole5.def @@ -0,0 +1,5 @@ +EXPORTS + iupolelua_open + luaopen_iupluaole + luaopen_iupluaole51 +
\ No newline at end of file diff --git a/iup/srclua5/iupole.mak b/iup/srclua5/iupole.mak new file mode 100755 index 0000000..6a3f9ec --- /dev/null +++ b/iup/srclua5/iupole.mak @@ -0,0 +1,23 @@ +PROJNAME = iup +LIBNAME = iupluaole51 +OPT = YES +DEF_FILE = iupluaole5.def + +IUP := .. + +DEFINES = IUPLUA_USELOH + +USE_IUPLUA = Yes +LIBS = iupole +USE_LUA51 = Yes +NO_LUALINK = Yes + +LOHDIR = loh +SRCLUA = olecontrol.lua +GC = $(addsuffix .c, $(basename $(SRCLUA))) +GC := $(addprefix il_, $(GC)) + +$(GC) : il_%.c : %.lua generator.lua + $(LUABIN) generator.lua $< + +SRC = $(GC) diff --git a/iup/srclua5/label.lua b/iup/srclua5/label.lua new file mode 100755 index 0000000..11894a6 --- /dev/null +++ b/iup/srclua5/label.lua @@ -0,0 +1,16 @@ +------------------------------------------------------------------------------ +-- Label class +------------------------------------------------------------------------------ +local ctrl = { + nick = "label", + parent = WIDGET, + creation = "S", + callback = {} +} + +function ctrl.createElement(class, arg) + return Label(arg.title) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/list.lua b/iup/srclua5/list.lua new file mode 100755 index 0000000..5c927f2 --- /dev/null +++ b/iup/srclua5/list.lua @@ -0,0 +1,22 @@ +------------------------------------------------------------------------------ +-- List class +------------------------------------------------------------------------------ +local ctrl = { + nick = "list", + parent = WIDGET, + creation = "-", + callback = { + action = "snn", + multiselect_cb = "s", + edit_cb = "ns", + dropdown_cb = "n", + dblclick_cb = "ns", + } +} + +function ctrl.createElement(class, arg) + return List() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/loh/button.loh b/iup/srclua5/loh/button.loh new file mode 100755 index 0000000..9ffb6aa --- /dev/null +++ b/iup/srclua5/loh/button.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/button.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/button.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 12, 0, 0, 0, 64, 98,117,116, +116,111,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, + 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131,100, 0, 0, 0, + 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0, +128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, + 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 98,117,116,116,111, +110, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 3, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 7, 0, 0, 0, 66,117,116,116,111,110, 0, 4, 6, 0, 0, 0, +116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, 0, 14, 0, + 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/button.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/button_be32.loh b/iup/srclua5/loh/button_be32.loh new file mode 100755 index 0000000..d7c1b69 --- /dev/null +++ b/iup/srclua5/loh/button_be32.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/button_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/button_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 12, 64, 98,117,116, +116,111,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 0, 0, 0, 18, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9, +130, 65, 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9, 0, 0, 0,100, +132,128, 64, 9, 0, 2,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,192, 69, + 0, 0, 0,128, 0, 3, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 13, + 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 7, 98,117,116,116,111, +110, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 3, 83, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, + 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 2, 0, 4, 0, 0, 0, 5, 0, + 0, 0,133, 0,192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, + 0, 0, 2, 4, 0, 0, 0, 7, 66,117,116,116,111,110, 0, 4, 0, 0, 0, 6, +116,105,116,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, + 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, + 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, + 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, + 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, + 99,116,114,108, 0, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/button_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/button_be64.loh b/iup/srclua5/loh/button_be64.loh new file mode 100755 index 0000000..50b2ba6 --- /dev/null +++ b/iup/srclua5/loh/button_be64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/button_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/button_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64, 98,117,116,116,111,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 66,117,116,116,111,110, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/button_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/button_le64.loh b/iup/srclua5/loh/button_le64.loh new file mode 100755 index 0000000..8c74526 --- /dev/null +++ b/iup/srclua5/loh/button_le64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/button_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/button_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64, 98,117,116,116,111,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 66,117,116,116,111,110, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/button_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/button_le64w.loh b/iup/srclua5/loh/button_le64w.loh new file mode 100755 index 0000000..21840c9 --- /dev/null +++ b/iup/srclua5/loh/button_le64w.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/button_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/button_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64, 98,117,116,116,111,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 66,117,116,116,111,110, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/button_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/canvas.loh b/iup/srclua5/loh/canvas.loh new file mode 100755 index 0000000..2533ce8 --- /dev/null +++ b/iup/srclua5/loh/canvas.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/canvas.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/canvas.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 12, 0, 0, 0, 64, 99, 97,110, +118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 29, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, + 9, 64, 65,130, 74, 0, 3, 0, 73, 0,194,131, 73,128,194,132, 73, 0,195,133, + 73, 0,195,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, 73, 64, 68,138, + 73,128,197,138, 73, 0,198,139, 73, 0,195,140, 73,128, 69,141, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,141, 69, 0, 7, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69, 64, 7, 0,128, 0, 0, 0,193,128, 7, 0, 92, 64,128, 1, 30, 0,128, 0, + 31, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 99, + 97,110,118, 97,115, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, + 0, 0,102,102, 0, 4, 10, 0, 0, 0, 98,117,116,116,111,110, 95, 99, 98, 0, + 4, 6, 0, 0, 0,110,110,110,110,115, 0, 4, 15, 0, 0, 0,101,110,116,101, +114,119,105,110,100,111,119, 95, 99, 98, 0, 4, 1, 0, 0, 0, 0, 4, 15, 0, + 0, 0,108,101, 97,118,101,119,105,110,100,111,119, 95, 99, 98, 0, 4, 10, 0, + 0, 0,109,111,116,105,111,110, 95, 99, 98, 0, 4, 4, 0, 0, 0,110,110,115, + 0, 4, 10, 0, 0, 0,114,101,115,105,122,101, 95, 99, 98, 0, 4, 3, 0, 0, + 0,110,110, 0, 4, 10, 0, 0, 0,115, 99,114,111,108,108, 95, 99, 98, 0, 4, + 4, 0, 0, 0,110,102,102, 0, 4, 12, 0, 0, 0,107,101,121,112,114,101,115, +115, 95, 99, 98, 0, 4, 7, 0, 0, 0,119,111,109, 95, 99, 98, 0, 4, 2, 0, + 0, 0,110, 0, 4, 9, 0, 0, 0,119,104,101,101,108, 95, 99, 98, 0, 4, 5, + 0, 0, 0,102,110,110,115, 0, 4, 15, 0, 0, 0,109,100,105, 97, 99,116,105, +118, 97,116,101, 95, 99, 98, 0, 4, 9, 0, 0, 0,102,111, 99,117,115, 95, 99, + 98, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 26, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, + 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 7, 0, 0, 0, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, + 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 29, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, + 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, + 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 26, + 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 19, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/canvas.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/canvas_be32.loh b/iup/srclua5/loh/canvas_be32.loh new file mode 100755 index 0000000..7950cd4 --- /dev/null +++ b/iup/srclua5/loh/canvas_be32.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/canvas_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/canvas_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 12, 64, 99, 97,110, +118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 0, 0, 0, 29, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9, +130, 65, 64, 9, 0, 3, 0, 74,131,194, 0, 73,132,194,128, 73,133,195, 0, 73, +134,195, 0, 73,135, 67,192, 73,136, 68, 64, 73,137, 68,192, 73,138, 68, 64, 73, +138,197,128, 73,139,198, 0, 73,140,195, 0, 73,141, 69,128, 73,131, 0, 64, 9, + 0, 0, 0,100,141,128, 64, 9, 0, 7, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, + 0, 7, 64, 69, 0, 0, 0,128, 0, 7,128,193, 1,128, 64, 92, 0,128, 0, 30, + 0, 0, 0, 31, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 7, 99, + 97,110,118, 97,115, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, + 0, 3,102,102, 0, 4, 0, 0, 0, 10, 98,117,116,116,111,110, 95, 99, 98, 0, + 4, 0, 0, 0, 6,110,110,110,110,115, 0, 4, 0, 0, 0, 15,101,110,116,101, +114,119,105,110,100,111,119, 95, 99, 98, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, + 0, 15,108,101, 97,118,101,119,105,110,100,111,119, 95, 99, 98, 0, 4, 0, 0, + 0, 10,109,111,116,105,111,110, 95, 99, 98, 0, 4, 0, 0, 0, 4,110,110,115, + 0, 4, 0, 0, 0, 10,114,101,115,105,122,101, 95, 99, 98, 0, 4, 0, 0, 0, + 3,110,110, 0, 4, 0, 0, 0, 10,115, 99,114,111,108,108, 95, 99, 98, 0, 4, + 0, 0, 0, 4,110,102,102, 0, 4, 0, 0, 0, 12,107,101,121,112,114,101,115, +115, 95, 99, 98, 0, 4, 0, 0, 0, 7,119,111,109, 95, 99, 98, 0, 4, 0, 0, + 0, 2,110, 0, 4, 0, 0, 0, 9,119,104,101,101,108, 95, 99, 98, 0, 4, 0, + 0, 0, 5,102,110,110,115, 0, 4, 0, 0, 0, 15,109,100,105, 97, 99,116,105, +118, 97,116,101, 95, 99, 98, 0, 4, 0, 0, 0, 9,102,111, 99,117,115, 95, 99, + 98, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 26, 0, 2, 0, 3, 0, 0, 0, + 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 7, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, + 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, + 0, 0, 26, 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, + 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 19, 0, 0, 0, 28, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/canvas_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/canvas_be64.loh b/iup/srclua5/loh/canvas_be64.loh new file mode 100755 index 0000000..2cdb93c --- /dev/null +++ b/iup/srclua5/loh/canvas_be64.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/canvas_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/canvas_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64, 99, 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 29, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 0, 3, 0, 73, 0,194,131, 73,128,194,132, + 73, 0,195,133, 73, 0,195,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, + 73, 64, 68,138, 73,128,197,138, 73, 0,198,139, 73, 0,195,140, 73,128, 69,141, + 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,141, 69, 0, 7, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69, 64, 7, 0,128, 0, 0, 0,193,128, 7, 0, 92, 64,128, 1, + 30, 0,128, 0, 31, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 99, 97,110,118, 97,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0,102,102, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, + 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, + 15, 0, 0, 0, 0, 0, 0, 0,101,110,116,101,114,119,105,110,100,111,119, 95, + 99, 98, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, + 0, 0,108,101, 97,118,101,119,105,110,100,111,119, 95, 99, 98, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,109,111,116,105,111,110, 95, 99, 98, 0, 4, 4, 0, 0, + 0, 0, 0, 0, 0,110,110,115, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,114,101, +115,105,122,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, + 4, 10, 0, 0, 0, 0, 0, 0, 0,115, 99,114,111,108,108, 95, 99, 98, 0, 4, + 4, 0, 0, 0, 0, 0, 0, 0,110,102,102, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,107,101,121,112,114,101,115,115, 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,119,111,109, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0,119,104,101,101,108, 95, 99, 98, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,102,110,110,115, 0, 4, 15, 0, 0, 0, 0, 0, 0, + 0,109,100,105, 97, 99,116,105,118, 97,116,101, 95, 99, 98, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,102,111, 99,117,115, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 0, 26, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, + 0, 0, 0, 26, 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 19, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/canvas_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/canvas_le64.loh b/iup/srclua5/loh/canvas_le64.loh new file mode 100755 index 0000000..ad64990 --- /dev/null +++ b/iup/srclua5/loh/canvas_le64.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/canvas_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/canvas_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64, 99, 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 29, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 0, 3, 0, 73, 0,194,131, 73,128,194,132, + 73, 0,195,133, 73, 0,195,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, + 73, 64, 68,138, 73,128,197,138, 73, 0,198,139, 73, 0,195,140, 73,128, 69,141, + 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,141, 69, 0, 7, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69, 64, 7, 0,128, 0, 0, 0,193,128, 7, 0, 92, 64,128, 1, + 30, 0,128, 0, 31, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 99, 97,110,118, 97,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0,102,102, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, + 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, + 15, 0, 0, 0, 0, 0, 0, 0,101,110,116,101,114,119,105,110,100,111,119, 95, + 99, 98, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, + 0, 0,108,101, 97,118,101,119,105,110,100,111,119, 95, 99, 98, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,109,111,116,105,111,110, 95, 99, 98, 0, 4, 4, 0, 0, + 0, 0, 0, 0, 0,110,110,115, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,114,101, +115,105,122,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, + 4, 10, 0, 0, 0, 0, 0, 0, 0,115, 99,114,111,108,108, 95, 99, 98, 0, 4, + 4, 0, 0, 0, 0, 0, 0, 0,110,102,102, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,107,101,121,112,114,101,115,115, 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,119,111,109, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0,119,104,101,101,108, 95, 99, 98, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,102,110,110,115, 0, 4, 15, 0, 0, 0, 0, 0, 0, + 0,109,100,105, 97, 99,116,105,118, 97,116,101, 95, 99, 98, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,102,111, 99,117,115, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 0, 26, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, + 0, 0, 0, 26, 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 19, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/canvas_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/canvas_le64w.loh b/iup/srclua5/loh/canvas_le64w.loh new file mode 100755 index 0000000..8712464 --- /dev/null +++ b/iup/srclua5/loh/canvas_le64w.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/canvas_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/canvas_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64, 99, 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 29, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 0, 3, 0, 73, 0,194,131, 73,128,194,132, + 73, 0,195,133, 73, 0,195,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, + 73, 64, 68,138, 73,128,197,138, 73, 0,198,139, 73, 0,195,140, 73,128, 69,141, + 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,141, 69, 0, 7, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69, 64, 7, 0,128, 0, 0, 0,193,128, 7, 0, 92, 64,128, 1, + 30, 0,128, 0, 31, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 99, 97,110,118, 97,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0,102,102, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, + 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, + 15, 0, 0, 0, 0, 0, 0, 0,101,110,116,101,114,119,105,110,100,111,119, 95, + 99, 98, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, + 0, 0,108,101, 97,118,101,119,105,110,100,111,119, 95, 99, 98, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,109,111,116,105,111,110, 95, 99, 98, 0, 4, 4, 0, 0, + 0, 0, 0, 0, 0,110,110,115, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,114,101, +115,105,122,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, + 4, 10, 0, 0, 0, 0, 0, 0, 0,115, 99,114,111,108,108, 95, 99, 98, 0, 4, + 4, 0, 0, 0, 0, 0, 0, 0,110,102,102, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,107,101,121,112,114,101,115,115, 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,119,111,109, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0,119,104,101,101,108, 95, 99, 98, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,102,110,110,115, 0, 4, 15, 0, 0, 0, 0, 0, 0, + 0,109,100,105, 97, 99,116,105,118, 97,116,101, 95, 99, 98, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,102,111, 99,117,115, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 0, 26, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, + 0, 0, 0, 26, 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 19, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/canvas_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/cbox.loh b/iup/srclua5/loh/cbox.loh new file mode 100755 index 0000000..23cd8e5 --- /dev/null +++ b/iup/srclua5/loh/cbox.loh @@ -0,0 +1,50 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/cbox.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/cbox.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64, 99, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, + 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131, 9,128,194,132,100, 0, + 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, + 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 99, 98,111, +120, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 2, 0, 0, 0,118, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, + 67, 98,111,120,118, 0, 4, 11, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, + 99, 0, 4,208, 0, 0, 0,115,116, 97,116,105, 99, 32,105,110,116, 32, 67, 98, +111,120,118, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 76, 41, 10,123, 10, + 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42,104,108,105,115,116, 32, 61, 32, +105,117,112,108,117, 97, 95, 99,104,101, 99,107,105,104, 97,110,100,108,101, 95, + 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 73,104, 97,110,100, +108,101, 32, 42,104, 32, 61, 32, 73,117,112, 67, 98,111,120,118, 40,104,108,105, +115,116, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, + 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95, +112,117,115,104,105,104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,104, + 41, 59, 10, 32, 32,102,114,101,101, 40,104,108,105,115,116, 41, 59, 10, 32, 32, +114,101,116,117,114,110, 32, 49, 59, 10,125, 10, 32, 32, 0, 4, 14, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 0, + 0, 0, 25, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,192, 0, +128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, + 0, 0, 0, 67, 98,111,120,118, 0, 0, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, + 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 20, 0, 0, 0, 25, + 0, 0, 0, 23, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/cbox.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/cbox_be32.loh b/iup/srclua5/loh/cbox_be32.loh new file mode 100755 index 0000000..b9bbb51 --- /dev/null +++ b/iup/srclua5/loh/cbox_be32.loh @@ -0,0 +1,52 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/cbox_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64, 99, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 20, 0, 1,192, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9,131,194, 0, 9,132,194,128, 9,133,195, + 0, 9, 0, 0, 0,100,134,128, 64, 9, 0, 3,128, 69, 0, 0, 0,128, 1, 0, + 64, 92, 0, 3,192, 69, 0, 0, 0,128, 0, 4, 0,193, 1,128, 64, 92, 0,128, + 0, 30, 0, 0, 0, 17, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, + 5, 99, 98,111,120, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 2,118, 0, 4, 0, 0, 0, 9, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 0, 0, 0, 8,105,110, 99,108,117,100,101, 0, 4, 0, + 0, 0, 10,105,117,112, 99, 98,111,120, 46,104, 0, 4, 0, 0, 0, 9,102,117, +110, 99,110, 97,109,101, 0, 4, 0, 0, 0, 6, 67, 98,111,120,118, 0, 4, 0, + 0, 0, 11, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 0, 0, 0,208,115, +116, 97,116,105, 99, 32,105,110,116, 32, 67, 98,111,120,118, 40,108,117, 97, 95, + 83,116, 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108, +101, 32, 42, 42,104,108,105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99, +104,101, 99,107,105,104, 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, + 32, 49, 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, + 73,117,112, 67, 98,111,120,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105, +117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, + 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110, +100,108,101, 95,114, 97,119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101, +101, 40,104,108,105,115,116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, + 59, 10,125, 10, 32, 32, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101, +116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 26, 0, 2, + 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,128, 0,192, 1, 0, 0,157, 0, 0, + 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 6, 67, 98,111,120,118, + 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 4, 0, + 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 21, 0, 0, 0, 26, 0, + 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, + 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 1, 0, + 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, + +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/cbox_be64.loh b/iup/srclua5/loh/cbox_be64.loh new file mode 100755 index 0000000..b75e9c3 --- /dev/null +++ b/iup/srclua5/loh/cbox_be64.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/cbox_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/cbox_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64, 99, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0, 99, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, + 67, 98,111,120,118, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101,102,117,110, 99, 0, 4,208, 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,105, + 99, 32,105,110,116, 32, 67, 98,111,120,118, 40,108,117, 97, 95, 83,116, 97,116, +101, 32, 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42, +104,108,105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107, +105,104, 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117,112, 67, + 98,111,120,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112,108,117, + 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, + 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95, +114, 97,119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40,104,108, +105,115,116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, + 32, 32, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 67, 98,111,120,118, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 20, 0, 0, 0, 25, + 0, 0, 0, 23, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/cbox_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/cbox_le64.loh b/iup/srclua5/loh/cbox_le64.loh new file mode 100755 index 0000000..d4161cb --- /dev/null +++ b/iup/srclua5/loh/cbox_le64.loh @@ -0,0 +1,56 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/cbox_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64, 99, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131, 9,128, +194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 99, 98,111,120, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 10, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 99, 98,111,120, 46,104, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, + 67, 98,111,120,118, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101,102,117,110, 99, 0, 4,208, 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,105, + 99, 32,105,110,116, 32, 67, 98,111,120,118, 40,108,117, 97, 95, 83,116, 97,116, +101, 32, 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42, +104,108,105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107, +105,104, 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117,112, 67, + 98,111,120,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112,108,117, + 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, + 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95, +114, 97,119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40,104,108, +105,115,116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, + 32, 32, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 26, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 67, 98,111,120,118, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 21, + 0, 0, 0, 26, 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/cbox_le64w.loh b/iup/srclua5/loh/cbox_le64w.loh new file mode 100755 index 0000000..7320ebe --- /dev/null +++ b/iup/srclua5/loh/cbox_le64w.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/cbox_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/cbox_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64, 99, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0, 99, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, + 67, 98,111,120,118, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101,102,117,110, 99, 0, 4,208, 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,105, + 99, 32,105,110,116, 32, 67, 98,111,120,118, 40,108,117, 97, 95, 83,116, 97,116, +101, 32, 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42, +104,108,105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107, +105,104, 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117,112, 67, + 98,111,120,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112,108,117, + 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, + 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95, +114, 97,119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40,104,108, +105,115,116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, + 32, 32, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 67, 98,111,120,118, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 20, 0, 0, 0, 25, + 0, 0, 0, 23, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/cbox_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/cells.loh b/iup/srclua5/loh/cells.loh new file mode 100755 index 0000000..f424f00 --- /dev/null +++ b/iup/srclua5/loh/cells.loh @@ -0,0 +1,57 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cells.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/cells.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64, 99,101,108, +108,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 29, + 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 64, 2, 0, 73, 0,194,131, 73,128,194,132, 73, 0,195,133, 73, +128,195,134, 73,128,195,135, 73, 64, 65,136, 73, 64,193,136, 73, 0, 67,137, 73, + 0,195,137, 9, 64, 0,131, 9, 64, 69,138,100, 0, 0, 0, 9, 64, 0,139,100, + 64, 0, 0, 9, 64,128,139, 69, 0, 6, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, + 64, 6, 0,128, 0, 0, 0,193,128, 6, 0, 92, 64,128, 1, 30, 0,128, 0, 27, + 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 99,101, +108,108,115, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 14, 0, 0, 0,109,111,117,115,101, 99,108,105, 99,107, 95, 99, 98, + 0, 4, 8, 0, 0, 0,110,110,110,110,110,110,115, 0, 4, 15, 0, 0, 0,109, +111,117,115,101,109,111,116,105,111,110, 95, 99, 98, 0, 4, 6, 0, 0, 0,110, +110,110,110,115, 0, 4, 13, 0, 0, 0,115, 99,114,111,108,108,105,110,103, 95, + 99, 98, 0, 4, 3, 0, 0, 0,110,110, 0, 4, 9, 0, 0, 0,119,105,100,116, +104, 95, 99, 98, 0, 4, 2, 0, 0, 0,110, 0, 4, 10, 0, 0, 0,104,101,105, +103,104,116, 95, 99, 98, 0, 4, 10, 0, 0, 0,110,108,105,110,101,115, 95, 99, + 98, 0, 4, 9, 0, 0, 0,110, 99,111,108,115, 95, 99, 98, 0, 4, 9, 0, 0, + 0,104,115,112, 97,110, 95, 99, 98, 0, 4, 9, 0, 0, 0,118,115,112, 97,110, + 95, 99, 98, 0, 4, 8, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 14, 0, + 0, 0,105,117,112, 99,111,110,116,114,111,108,115, 46,104, 0, 4, 7, 0, 0, + 0,114,101,100,114, 97,119, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101, +116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, + 1, 0, 2, 2, 0, 0, 0, 9, 64, 64,128, 30, 0,128, 0, 2, 0, 0, 0, 4, + 8, 0, 0, 0,114,101,112, 97,105,110,116, 0, 4, 4, 0, 0, 0, 89, 69, 83, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, + 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 29, 0, 0, 0, 0, 2, 0, 3, + 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, + 1, 0, 0, 0, 4, 6, 0, 0, 0, 67,101,108,108,115, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, + 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 25, 0, 0, 0, 23, 0, 0, + 0, 29, 0, 0, 0, 27, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 17, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cells.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/cells_be32.loh b/iup/srclua5/loh/cells_be32.loh new file mode 100755 index 0000000..73e7cb0 --- /dev/null +++ b/iup/srclua5/loh/cells_be32.loh @@ -0,0 +1,57 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cells_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/cells_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64, 99,101,108, +108,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 29, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 2, 64, 74,131,194, 0, 73,132,194,128, 73,133,195, 0, 73,134, +195,128, 73,135,195,128, 73,136, 65, 64, 73,136,193, 64, 73,137, 67, 0, 73,137, +195, 0, 73,131, 0, 64, 9,138, 69, 64, 9, 0, 0, 0,100,139, 0, 64, 9, 0, + 0, 64,100,139,128, 64, 9, 0, 6, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, + 6, 64, 69, 0, 0, 0,128, 0, 6,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, + 0, 0, 27, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 6, 99,101, +108,108,115, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, + 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111, +110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 14,109,111,117,115,101, 99,108,105, 99,107, 95, 99, 98, + 0, 4, 0, 0, 0, 8,110,110,110,110,110,110,115, 0, 4, 0, 0, 0, 15,109, +111,117,115,101,109,111,116,105,111,110, 95, 99, 98, 0, 4, 0, 0, 0, 6,110, +110,110,110,115, 0, 4, 0, 0, 0, 13,115, 99,114,111,108,108,105,110,103, 95, + 99, 98, 0, 4, 0, 0, 0, 3,110,110, 0, 4, 0, 0, 0, 9,119,105,100,116, +104, 95, 99, 98, 0, 4, 0, 0, 0, 2,110, 0, 4, 0, 0, 0, 10,104,101,105, +103,104,116, 95, 99, 98, 0, 4, 0, 0, 0, 10,110,108,105,110,101,115, 95, 99, + 98, 0, 4, 0, 0, 0, 9,110, 99,111,108,115, 95, 99, 98, 0, 4, 0, 0, 0, + 9,104,115,112, 97,110, 95, 99, 98, 0, 4, 0, 0, 0, 9,118,115,112, 97,110, + 95, 99, 98, 0, 4, 0, 0, 0, 8,105,110, 99,108,117,100,101, 0, 4, 0, 0, + 0, 11,105,117,112, 99,101,108,108,115, 46,104, 0, 4, 0, 0, 0, 7,114,101, +100,114, 97,119, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, + 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 1, 0, 2, + 0, 0, 0, 2,128, 64, 64, 9, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, + 8,114,101,112, 97,105,110,116, 0, 4, 0, 0, 0, 4, 89, 69, 83, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, + 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 29, 0, 2, 0, 3, 0, 0, 0, + 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 6, 67,101,108,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 2, + 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, + 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 25, 0, 0, 0, 23, 0, 0, + 0, 29, 0, 0, 0, 27, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 17, 0, 0, 0, 28, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cells_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/cells_be64.loh b/iup/srclua5/loh/cells_be64.loh new file mode 100755 index 0000000..ff5fc7d --- /dev/null +++ b/iup/srclua5/loh/cells_be64.loh @@ -0,0 +1,64 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cells_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/cells_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64, 99,101,108,108,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 29, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 2, 0, 73, 0,194,131, 73,128,194,132, 73, + 0,195,133, 73,128,195,134, 73,128,195,135, 73, 64, 65,136, 73, 64,193,136, 73, + 0, 67,137, 73, 0,195,137, 9, 64, 0,131, 9, 64, 69,138,100, 0, 0, 0, 9, + 64, 0,139,100, 64, 0, 0, 9, 64,128,139, 69, 0, 6, 0,128, 0, 0, 0, 92, + 64, 0, 1, 69, 64, 6, 0,128, 0, 0, 0,193,128, 6, 0, 92, 64,128, 1, 30, + 0,128, 0, 27, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 99,101,108,108,115, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0,109,111,117,115,101, 99,108,105, 99,107, 95, 99, 98, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0,110,110,110,110,110,110,115, 0, 4, 15, 0, 0, 0, 0, + 0, 0, 0,109,111,117,115,101,109,111,116,105,111,110, 95, 99, 98, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,115, 99,114,111,108,108,105,110,103, 95, 99, 98, 0, 4, 3, 0, 0, 0, + 0, 0, 0, 0,110,110, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,119,105,100,116, +104, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 10, 0, 0, + 0, 0, 0, 0, 0,104,101,105,103,104,116, 95, 99, 98, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,110,108,105,110,101,115, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,110, 99,111,108,115, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,104,115,112, 97,110, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,118, +115,112, 97,110, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99, +108,117,100,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,101,108, +108,115, 46,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114,101,100,114, 97,119, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, + 9, 64, 64,128, 30, 0,128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,114,101,112, 97,105,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 89, 69, + 83, 0, 0, 0, 0, 0, 2, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 1, 0, + 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 0, 29, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 67,101,108,108,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 28, 0, 0, 0, + 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 25, 0, 0, 0, 23, 0, + 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 17, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cells_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/cells_le64.loh b/iup/srclua5/loh/cells_le64.loh new file mode 100755 index 0000000..0a49dbc --- /dev/null +++ b/iup/srclua5/loh/cells_le64.loh @@ -0,0 +1,64 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cells_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/cells_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64, 99,101,108,108,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 29, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 2, 0, 73, 0,194,131, 73,128,194,132, 73, + 0,195,133, 73,128,195,134, 73,128,195,135, 73, 64, 65,136, 73, 64,193,136, 73, + 0, 67,137, 73, 0,195,137, 9, 64, 0,131, 9, 64, 69,138,100, 0, 0, 0, 9, + 64, 0,139,100, 64, 0, 0, 9, 64,128,139, 69, 0, 6, 0,128, 0, 0, 0, 92, + 64, 0, 1, 69, 64, 6, 0,128, 0, 0, 0,193,128, 6, 0, 92, 64,128, 1, 30, + 0,128, 0, 27, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 99,101,108,108,115, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0,109,111,117,115,101, 99,108,105, 99,107, 95, 99, 98, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0,110,110,110,110,110,110,115, 0, 4, 15, 0, 0, 0, 0, + 0, 0, 0,109,111,117,115,101,109,111,116,105,111,110, 95, 99, 98, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,115, 99,114,111,108,108,105,110,103, 95, 99, 98, 0, 4, 3, 0, 0, 0, + 0, 0, 0, 0,110,110, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,119,105,100,116, +104, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 10, 0, 0, + 0, 0, 0, 0, 0,104,101,105,103,104,116, 95, 99, 98, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,110,108,105,110,101,115, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,110, 99,111,108,115, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,104,115,112, 97,110, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,118, +115,112, 97,110, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99, +108,117,100,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,101,108, +108,115, 46,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114,101,100,114, 97,119, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, + 9, 64, 64,128, 30, 0,128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,114,101,112, 97,105,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 89, 69, + 83, 0, 0, 0, 0, 0, 2, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 1, 0, + 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 0, 29, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 67,101,108,108,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 28, 0, 0, 0, + 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 25, 0, 0, 0, 23, 0, + 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 17, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cells_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/cells_le64w.loh b/iup/srclua5/loh/cells_le64w.loh new file mode 100755 index 0000000..ed300df --- /dev/null +++ b/iup/srclua5/loh/cells_le64w.loh @@ -0,0 +1,64 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/cells_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/cells_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64, 99,101,108,108,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 29, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 2, 0, 73, 0,194,131, 73,128,194,132, 73, + 0,195,133, 73,128,195,134, 73,128,195,135, 73, 64, 65,136, 73, 64,193,136, 73, + 0, 67,137, 73, 0,195,137, 9, 64, 0,131, 9, 64, 69,138,100, 0, 0, 0, 9, + 64, 0,139,100, 64, 0, 0, 9, 64,128,139, 69, 0, 6, 0,128, 0, 0, 0, 92, + 64, 0, 1, 69, 64, 6, 0,128, 0, 0, 0,193,128, 6, 0, 92, 64,128, 1, 30, + 0,128, 0, 27, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 99,101,108,108,115, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0,109,111,117,115,101, 99,108,105, 99,107, 95, 99, 98, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0,110,110,110,110,110,110,115, 0, 4, 15, 0, 0, 0, 0, + 0, 0, 0,109,111,117,115,101,109,111,116,105,111,110, 95, 99, 98, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,115, 99,114,111,108,108,105,110,103, 95, 99, 98, 0, 4, 3, 0, 0, 0, + 0, 0, 0, 0,110,110, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,119,105,100,116, +104, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 10, 0, 0, + 0, 0, 0, 0, 0,104,101,105,103,104,116, 95, 99, 98, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,110,108,105,110,101,115, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,110, 99,111,108,115, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,104,115,112, 97,110, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,118, +115,112, 97,110, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99, +108,117,100,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,101,108, +108,115, 46,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114,101,100,114, 97,119, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0, + 9, 64, 64,128, 30, 0,128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,114,101,112, 97,105,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 89, 69, + 83, 0, 0, 0, 0, 0, 2, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 1, 0, + 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 0, 29, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 67,101,108,108,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 28, 0, 0, 0, + 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 25, 0, 0, 0, 23, 0, + 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 17, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/cells_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/clipboard.loh b/iup/srclua5/loh/clipboard.loh new file mode 100644 index 0000000..0f5d067 --- /dev/null +++ b/iup/srclua5/loh/clipboard.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/clipboard.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/clipboard.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 15, 0, 0, 0, 64, 99,108,105, +112, 98,111, 97,114,100, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, 0, 0, 99,108,105,112, 98,111, + 97,114,100, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, + 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 10, 0, 0, 0, 67,108,105,112, 98,111, 97,114,100, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/clipboard.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/clipboard_be32.loh b/iup/srclua5/loh/clipboard_be32.loh new file mode 100755 index 0000000..96be360 --- /dev/null +++ b/iup/srclua5/loh/clipboard_be32.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/clipboard_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/clipboard_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 15, 64, 99,108,105, +112, 98,111, 97,114,100, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 0, 0, 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, + 0, 64, 9,130, 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131, +128, 64, 9, 0, 2, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, + 0, 0,128, 0, 2,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, + 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 10, 99,108,105,112, 98,111, + 97,114,100, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, + 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111, +110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 2, 0, 3, 0, 0, 0, + 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 10, 67,108,105,112, 98,111, 97,114,100, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, + 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, + 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, + 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/clipboard_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/clipboard_be64.loh b/iup/srclua5/loh/clipboard_be64.loh new file mode 100644 index 0000000..b7566e7 --- /dev/null +++ b/iup/srclua5/loh/clipboard_be64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/clipboard_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/clipboard_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64, 99,108,105,112, 98,111, 97,114,100, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, + 0, 0, 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, + 64, 2, 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0, 99,108,105,112, 98,111, 97,114,100, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, + 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 67,108,105,112, 98,111, 97,114,100, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, + 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/clipboard_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/clipboard_le64.loh b/iup/srclua5/loh/clipboard_le64.loh new file mode 100755 index 0000000..f4f856b --- /dev/null +++ b/iup/srclua5/loh/clipboard_le64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/clipboard_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/clipboard_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64, 99,108,105,112, 98,111, 97,114,100, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, + 0, 0, 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, + 64, 2, 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0, 99,108,105,112, 98,111, 97,114,100, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, + 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 67,108,105,112, 98,111, 97,114,100, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, + 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/clipboard_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colorbar.loh b/iup/srclua5/loh/colorbar.loh new file mode 100755 index 0000000..73e4cc3 --- /dev/null +++ b/iup/srclua5/loh/colorbar.loh @@ -0,0 +1,53 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbar.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbar.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 14, 0, 0, 0, 64, 99,111,108, +111,114, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 31, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 1, 0, 73, 0,194,131,138, 64,128, 0,193,128, + 2, 0,137, 0,195,133,162, 64,128, 0, 73,128,128,132, 73, 0,194,134, 73,128, + 66,135, 9, 64, 0,131, 9, 0,196,135, 9,128,196,136, 65, 0, 5, 0, 71,192, + 4, 0, 65,128, 5, 0, 71, 64, 5, 0,100, 0, 0, 0, 9, 64,128,139, 69, 0, + 6, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 6, 0,128, 0, 0, 0,193,128, + 6, 0, 92, 64,128, 1, 30, 0,128, 0, 27, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 9, 0, 0, 0, 99,111,108,111,114, 98, 97,114, 0, 4, 7, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, + 0,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 3, 0, 0, 0,110,110, 0, 4, + 8, 0, 0, 0, 99,101,108,108, 95, 99, 98, 0, 4, 2, 0, 0, 0,110, 0, 4, + 4, 0, 0, 0,114,101,116, 0, 4, 2, 0, 0, 0,115, 0, 4, 10, 0, 0, 0, +115,119,105,116, 99,104, 95, 99, 98, 0, 4, 12, 0, 0, 0,101,120,116,101,110, +100,101,100, 95, 99, 98, 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, + 0, 4, 9, 0, 0, 0, 67,111,108,111,114, 98, 97,114, 0, 4, 8, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 14, 0, 0, 0,105,117,112, 99,111,110,116, +114,111,108,115, 46,104, 0, 4, 8, 0, 0, 0, 80, 82, 73, 77, 65, 82, 89, 0, + 3, 0, 0, 0, 0, 0, 0,240,191, 4, 10, 0, 0, 0, 83, 69, 67, 79, 78, 68, + 65, 82, 89, 0, 3, 0, 0, 0, 0, 0, 0, 0,192, 4, 14, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, + 23, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, +157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 9, 0, 0, + 0, 67,111,108,111,114, 98, 97,114, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111, +110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, + 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 15, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 23, 0, 0, 0, 21, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 17, 0, 0, 0, 30, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbar.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colorbar_be32.loh b/iup/srclua5/loh/colorbar_be32.loh new file mode 100755 index 0000000..0d516ae --- /dev/null +++ b/iup/srclua5/loh/colorbar_be32.loh @@ -0,0 +1,49 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbar_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbar_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 14, 64, 99,111,108, +111,114, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 0, 0, 0, 27, 0, 1,128, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, + 64, 9,130, 65, 64, 9, 0, 1, 0, 74,131,194, 0, 73, 0,128, 64,138, 0, 2, +128,193,133,195, 0,137, 0,128, 64,162,132,128,128, 73,134,194, 0, 73,135, 66, +128, 73,131, 0, 64, 9,135,196, 0, 9,136,196,128, 9, 0, 0, 0,100,137,128, + 64, 9, 0, 5, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 5, 64, 69, 0, 0, + 0,128, 0, 5,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 23, 4, 0, + 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 9, 99,111,108,111,114, 98, 97, +114, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, + 4, 0, 0, 0, 10,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 0, 0, 0, 3, +110,110, 0, 4, 0, 0, 0, 8, 99,101,108,108, 95, 99, 98, 0, 4, 0, 0, 0, + 2,110, 0, 4, 0, 0, 0, 4,114,101,116, 0, 4, 0, 0, 0, 2,115, 0, 4, + 0, 0, 0, 10,115,119,105,116, 99,104, 95, 99, 98, 0, 4, 0, 0, 0, 12,101, +120,116,101,110,100,101,100, 95, 99, 98, 0, 4, 0, 0, 0, 9,102,117,110, 99, +110, 97,109,101, 0, 4, 0, 0, 0, 9, 67,111,108,111,114, 98, 97,114, 0, 4, + 0, 0, 0, 8,105,110, 99,108,117,100,101, 0, 4, 0, 0, 0, 14,105,117,112, + 99,111,108,111,114, 98, 97,114, 46,104, 0, 4, 0, 0, 0, 14, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119, +105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 20, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, 64,198, 1, 0, + 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 9, 67, +111,108,111,114, 98, 97,114, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, + 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, + 0, 15, 0, 0, 0, 20, 0, 0, 0, 18, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, + 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, + 0, 23, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 17, 0, + 0, 0, 26, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbar_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/colorbar_be64.loh b/iup/srclua5/loh/colorbar_be64.loh new file mode 100755 index 0000000..e16bce6 --- /dev/null +++ b/iup/srclua5/loh/colorbar_be64.loh @@ -0,0 +1,59 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbar_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbar_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 31, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 1, 0, 73, 0,194,131,138, 64, +128, 0,193,128, 2, 0,137, 0,195,133,162, 64,128, 0, 73,128,128,132, 73, 0, +194,134, 73,128, 66,135, 9, 64, 0,131, 9, 0,196,135, 9,128,196,136, 65, 0, + 5, 0, 71,192, 4, 0, 65,128, 5, 0, 71, 64, 5, 0,100, 0, 0, 0, 9, 64, +128,139, 69, 0, 6, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 6, 0,128, 0, + 0, 0,193,128, 6, 0, 92, 64,128, 1, 30, 0,128, 0, 27, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99,111,108,111,114, 98, 97,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 99,101,108,108, 95, 99, 98, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, +115,119,105,116, 99,104, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,101, +120,116,101,110,100,101,100, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111, +108,111,114, 98, 97,114, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,111,108,111, +114, 98, 97,114, 46,104, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 80, 82, 73, 77, + 65, 82, 89, 0, 3, 0, 0, 0, 0, 0, 0,240,191, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 83, 69, 67, 79, 78, 68, 65, 82, 89, 0, 3, 0, 0, 0, 0, 0, 0, 0, +192, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 23, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 98, 97, +114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, + 10, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 15, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 23, 0, 0, 0, 21, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 26, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, + 0, 17, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbar_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colorbar_le64.loh b/iup/srclua5/loh/colorbar_le64.loh new file mode 100755 index 0000000..83d07b1 --- /dev/null +++ b/iup/srclua5/loh/colorbar_le64.loh @@ -0,0 +1,55 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbar_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbar_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 27, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 1, 0, 73, 0,194,131,138, 64, +128, 0,193,128, 2, 0,137, 0,195,133,162, 64,128, 0, 73,128,128,132, 73, 0, +194,134, 73,128, 66,135, 9, 64, 0,131, 9, 0,196,135, 9,128,196,136,100, 0, + 0, 0, 9, 64,128,137, 69, 0, 5, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 5, 0,128, 0, 0, 0,193,128, 5, 0, 92, 64,128, 1, 30, 0,128, 0, 23, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114, 98, 97,114, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, +110,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 99,101,108,108, 95, 99, 98, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, +114,101,116, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,115,119,105,116, 99,104, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,101,120,116,101,110,100,101,100, 95, 99, 98, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 67,111,108,111,114, 98, 97,114, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 99,111,108,111,114, 98, 97,114, 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, + 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101, +116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, + 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, + 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 67,111,108,111,114, 98, 97,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, + 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 20, 0, + 0, 0, 18, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 23, 0, + 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 17, 0, 0, 0, 26, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbar_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/colorbar_le64w.loh b/iup/srclua5/loh/colorbar_le64w.loh new file mode 100755 index 0000000..c599965 --- /dev/null +++ b/iup/srclua5/loh/colorbar_le64w.loh @@ -0,0 +1,59 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbar_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbar_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 31, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 1, 0, 73, 0,194,131,138, 64, +128, 0,193,128, 2, 0,137, 0,195,133,162, 64,128, 0, 73,128,128,132, 73, 0, +194,134, 73,128, 66,135, 9, 64, 0,131, 9, 0,196,135, 9,128,196,136, 65, 0, + 5, 0, 71,192, 4, 0, 65,128, 5, 0, 71, 64, 5, 0,100, 0, 0, 0, 9, 64, +128,139, 69, 0, 6, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 6, 0,128, 0, + 0, 0,193,128, 6, 0, 92, 64,128, 1, 30, 0,128, 0, 27, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99,111,108,111,114, 98, 97,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 99,101,108,108, 95, 99, 98, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, +115,119,105,116, 99,104, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,101, +120,116,101,110,100,101,100, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111, +108,111,114, 98, 97,114, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,111,108,111, +114, 98, 97,114, 46,104, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 80, 82, 73, 77, + 65, 82, 89, 0, 3, 0, 0, 0, 0, 0, 0,240,191, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 83, 69, 67, 79, 78, 68, 65, 82, 89, 0, 3, 0, 0, 0, 0, 0, 0, 0, +192, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 23, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 98, 97, +114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, + 10, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 15, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 23, 0, 0, 0, 21, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 26, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, + 0, 17, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbar_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colorbrowser.loh b/iup/srclua5/loh/colorbrowser.loh new file mode 100755 index 0000000..9dd12d5 --- /dev/null +++ b/iup/srclua5/loh/colorbrowser.loh @@ -0,0 +1,45 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbrowser.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbrowser.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 18, 0, 0, 0, 64, 99,111,108, +111,114, 98,114,111,119,115,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 21, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0, +194,132, 9, 64, 0,131, 9,192, 66,133, 9, 64, 67,134,100, 0, 0, 0, 9, 64, + 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 4, 0,128, 0, + 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, + 0, 0, 0,110,105, 99,107, 0, 4, 13, 0, 0, 0, 99,111,108,111,114, 98,114, +111,119,115,101,114, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 8, 0, 0, 0,100,114, 97,103, 95, 99, 98, 0, 4, 4, 0, + 0, 0, 99, 99, 99, 0, 4, 10, 0, 0, 0, 99,104, 97,110,103,101, 95, 99, 98, + 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 13, 0, 0, 0, + 67,111,108,111,114, 66,114,111,119,115,101,114, 0, 4, 8, 0, 0, 0,105,110, + 99,108,117,100,101, 0, 4, 14, 0, 0, 0,105,117,112, 99,111,110,116,114,111, +108,115, 46,104, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, + 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, + 30, 0,128, 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 67,111,108,111,114, 66,114, +111,119,115,101,114, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, + 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, + 16, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 99,116,114,108, 0, 11, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbrowser.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colorbrowser_be32.loh b/iup/srclua5/loh/colorbrowser_be32.loh new file mode 100755 index 0000000..fff8f43 --- /dev/null +++ b/iup/srclua5/loh/colorbrowser_be32.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbrowser_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbrowser_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 18, 64, 99,111,108, +111,114, 98,114,111,119,115,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 0, 0, 0, 21, 0, 1,128, 10,128, 64, 64, 9, 0, 0, +192, 69,129, 0, 64, 9,130, 65, 64, 9, 0, 0,128, 74,131,194, 0, 73,132,194, + 0, 73,131, 0, 64, 9,133, 66,192, 9,134, 67, 64, 9, 0, 0, 0,100,135, 0, + 64, 9, 0, 3,192, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 4, 0, 69, 0, 0, + 0,128, 0, 4, 64,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 18, 4, 0, + 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 13, 99,111,108,111,114, 98,114, +111,119,115,101,114, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 0, 0, 0, 8,100,114, 97,103, 95, 99, 98, 0, 4, 0, 0, + 0, 4, 99, 99, 99, 0, 4, 0, 0, 0, 10, 99,104, 97,110,103,101, 95, 99, 98, + 0, 4, 0, 0, 0, 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, 0, 0, 13, + 67,111,108,111,114, 66,114,111,119,115,101,114, 0, 4, 0, 0, 0, 8,105,110, + 99,108,117,100,101, 0, 4, 0, 0, 0, 8,105,117,112, 99, 98, 46,104, 0, 4, + 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, + 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, + 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, + 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, + 0,133, 0,192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, + 0, 2, 4, 0, 0, 0, 13, 67,111,108,111,114, 66,114,111,119,115,101,114, 0, + 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, + 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 21, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, + 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 99,116, +114,108, 0, 0, 0, 0, 11, 0, 0, 0, 20, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbrowser_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/colorbrowser_be64.loh b/iup/srclua5/loh/colorbrowser_be64.loh new file mode 100755 index 0000000..0f25250 --- /dev/null +++ b/iup/srclua5/loh/colorbrowser_be64.loh @@ -0,0 +1,49 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbrowser_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbrowser_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114, 98,114,111,119,115,101,114, 46,108,117, 97, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 21, 0, 0, 0, 10,128, 1, 0, 9, 64, + 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0, +194,131, 73, 0,194,132, 9, 64, 0,131, 9,192, 66,133, 9, 64, 67,134,100, 0, + 0, 0, 9, 64, 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, + 4, 0,128, 0, 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114, 98,114,111,119,115,101,114, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, + 0, 0, 0, 0, 0,100,114, 97,103, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0, 99, 99, 99, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99,104, 97,110,103, +101, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97, +109,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 66,114,111, +119,115,101,114, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100, +101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99, 98, 46,104, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, + 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, + 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 66,114,111,119, +115,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 11, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbrowser_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colorbrowser_le64.loh b/iup/srclua5/loh/colorbrowser_le64.loh new file mode 100755 index 0000000..5ea6381 --- /dev/null +++ b/iup/srclua5/loh/colorbrowser_le64.loh @@ -0,0 +1,49 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbrowser_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbrowser_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114, 98,114,111,119,115,101,114, 46,108,117, 97, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 21, 0, 0, 0, 10,128, 1, 0, 9, 64, + 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0, +194,131, 73, 0,194,132, 9, 64, 0,131, 9,192, 66,133, 9, 64, 67,134,100, 0, + 0, 0, 9, 64, 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, + 4, 0,128, 0, 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114, 98,114,111,119,115,101,114, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, + 0, 0, 0, 0, 0,100,114, 97,103, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0, 99, 99, 99, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99,104, 97,110,103, +101, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97, +109,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 66,114,111, +119,115,101,114, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100, +101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99, 98, 46,104, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, + 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, + 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 66,114,111,119, +115,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 11, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbrowser_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/colorbrowser_le64w.loh b/iup/srclua5/loh/colorbrowser_le64w.loh new file mode 100755 index 0000000..f4625d8 --- /dev/null +++ b/iup/srclua5/loh/colorbrowser_le64w.loh @@ -0,0 +1,49 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/colorbrowser_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/colorbrowser_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114, 98,114,111,119,115,101,114, 46,108,117, 97, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 21, 0, 0, 0, 10,128, 1, 0, 9, 64, + 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0, +194,131, 73, 0,194,132, 9, 64, 0,131, 9,192, 66,133, 9, 64, 67,134,100, 0, + 0, 0, 9, 64, 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, + 4, 0,128, 0, 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114, 98,114,111,119,115,101,114, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, + 0, 0, 0, 0, 0,100,114, 97,103, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0, 99, 99, 99, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99,104, 97,110,103, +101, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97, +109,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 66,114,111, +119,115,101,114, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100, +101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99, 98, 46,104, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, + 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, + 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,111,108,111,114, 66,114,111,119, +115,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 11, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/colorbrowser_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/colordlg.loh b/iup/srclua5/loh/colordlg.loh new file mode 100755 index 0000000..4bff37b --- /dev/null +++ b/iup/srclua5/loh/colordlg.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/colordlg.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/colordlg.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 14, 0, 0, 0, 64, 99,111,108, +111,114,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0,132,100, 0, + 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, 0, 0, 9, 64, +128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, + 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, + 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, 0, 99,111,108,111,114,100,108, +103, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, + 4, 9, 0, 0, 0, 67,111,108,111,114, 68,108,103, 0, 4, 9, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0,112,111,112,117,112, 0, 4, + 8, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, + 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, + 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, + 6, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, + 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 0, 0, 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, + 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, + 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 8, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, + 0, 0, 1, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 67,111,108,111,114, 68, +108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, + 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, + 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/colordlg.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colordlg_be32.loh b/iup/srclua5/loh/colordlg_be32.loh new file mode 100755 index 0000000..166799a --- /dev/null +++ b/iup/srclua5/loh/colordlg_be32.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/colordlg_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/colordlg_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 14, 64, 99,111,108, +111,114,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 0, 0, 0, 22, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, + 64, 9,130, 65, 64, 9,131, 65,192, 9, 0, 0, 0, 74,132, 0, 64, 9, 0, 0, + 0,100,132,128, 64, 9, 0, 0, 64,100,133, 0, 64, 9, 0, 0,128,100,133,128, + 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 3, 64, 69, 0, 0, + 0,128, 0, 3,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 15, 4, 0, + 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 9, 99,111,108,111,114,100,108, +103, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9,102,117,110, 99,110, 97,109,101, 0, + 4, 0, 0, 0, 9, 67,111,108,111,114, 68,108,103, 0, 4, 0, 0, 0, 9, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 6,112,111,112,117,112, 0, 4, + 0, 0, 0, 8,100,101,115,116,114,111,121, 0, 4, 0, 0, 0, 14, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32, +119,105,100,103,101,116, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 12, 0, + 0, 0, 14, 0, 3, 0, 7, 0, 0, 0, 6, 0, 0, 0,197, 0, 0, 1, 0, 0, +128, 1, 64, 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, 30, 0, 0, 0, 1, 4, + 0, 0, 0, 6, 80,111,112,117,112, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 14, 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 2,120, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 2,121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 1, 0, 3, 0, 0, 0, 5, 0, 0, 0, + 69, 0, 0, 0,128, 1, 0, 0, 93, 0, 0, 0, 94, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 8, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, + 0, 18, 0, 0, 0, 1, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, + 22, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0, +158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 9, 67,111,108,111,114, 68, +108,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, + 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, + 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 8, 0, 0, + 0, 21, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/colordlg_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colordlg_be64.loh b/iup/srclua5/loh/colordlg_be64.loh new file mode 100755 index 0000000..90f29eb --- /dev/null +++ b/iup/srclua5/loh/colordlg_be64.loh @@ -0,0 +1,60 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/colordlg_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/colordlg_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, + 0,132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, + 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114,100,108,103, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 67,111,108,111,114, 68,108,103, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112, +117,112, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, + 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, + 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117, +112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, + 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, + 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101, +115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111, +108,111,114, 68,108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, + 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, + 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/colordlg_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colordlg_le64.loh b/iup/srclua5/loh/colordlg_le64.loh new file mode 100755 index 0000000..834a8bd --- /dev/null +++ b/iup/srclua5/loh/colordlg_le64.loh @@ -0,0 +1,60 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/colordlg_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/colordlg_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, + 0,132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, + 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114,100,108,103, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 67,111,108,111,114, 68,108,103, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112, +117,112, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, + 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, + 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117, +112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, + 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, + 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101, +115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111, +108,111,114, 68,108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, + 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, + 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/colordlg_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/colordlg_le64w.loh b/iup/srclua5/loh/colordlg_le64w.loh new file mode 100755 index 0000000..6a612da --- /dev/null +++ b/iup/srclua5/loh/colordlg_le64w.loh @@ -0,0 +1,60 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/colordlg_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/colordlg_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,108,111,114,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, + 0,132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, + 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,111,108,111,114,100,108,103, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 67,111,108,111,114, 68,108,103, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112, +117,112, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, + 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, + 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117, +112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, + 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, + 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101, +115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67,111, +108,111,114, 68,108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, + 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, + 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/colordlg_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/constants.loh b/iup/srclua5/loh/constants.loh new file mode 100755 index 0000000..a84103c --- /dev/null +++ b/iup/srclua5/loh/constants.loh @@ -0,0 +1,102 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/constants.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/constants.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 15, 0, 0, 0, 64, 99,111,110, +115,116, 97,110,116,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 2,102, 0, 0, 0, 1, 64, 0, 0, 7, 0, 0, 0, 1,192, 0, 0, 7, +128, 0, 0, 1, 64, 1, 0, 7, 0, 1, 0, 1, 64, 1, 0, 7,128, 1, 0, 1, + 64, 1, 0, 7,192, 1, 0, 1, 64, 2, 0, 7, 0, 2, 0, 1,192, 2, 0, 7, +128, 2, 0, 1, 64, 3, 0, 7, 0, 3, 0, 1,192, 3, 0, 7,128, 3, 0, 1, + 64, 4, 0, 7, 0, 4, 0, 1,192, 4, 0, 7,128, 4, 0, 1, 64, 5, 0, 7, + 0, 5, 0, 1,192, 5, 0, 7,128, 5, 0, 1, 64, 6, 0, 7, 0, 6, 0, 5, + 0, 4, 0, 7,128, 6, 0, 5,128, 4, 0, 7,192, 6, 0, 1,192, 0, 0, 7, + 0, 7, 0, 1, 64, 0, 0, 7, 64, 7, 0, 1,192, 7, 0, 7,128, 7, 0, 1, + 64, 8, 0, 7, 0, 8, 0, 1,192, 8, 0, 7,128, 8, 0, 1, 64, 9, 0, 7, + 0, 9, 0, 1,192, 9, 0, 7,128, 9, 0, 1, 64, 10, 0, 7, 0, 10, 0, 1, +192, 10, 0, 7,128, 10, 0, 1, 64, 11, 0, 7, 0, 11, 0, 1,192, 11, 0, 7, +128, 11, 0, 1, 64, 12, 0, 7, 0, 12, 0, 1,192, 0, 0, 7,128, 12, 0, 1, + 64, 0, 0, 7,192, 12, 0, 1,192, 7, 0, 7, 0, 13, 0, 1, 64, 8, 0, 7, + 64, 13, 0, 1,192, 8, 0, 7,128, 13, 0, 5, 0, 14, 0, 6, 64, 78, 0, 65, +128, 14, 0, 28,128, 0, 1, 7,192, 13, 0, 5, 0, 14, 0, 6, 64, 78, 0, 65, + 0, 15, 0, 28,128, 0, 1, 7,192, 14, 0, 5, 0, 14, 0, 6, 64, 78, 0, 65, +128, 15, 0, 28,128, 0, 1, 7, 64, 15, 0, 5, 0, 14, 0, 6, 64, 78, 0, 65, + 0, 16, 0, 28,128, 0, 1, 7,192, 15, 0, 5, 0, 14, 0, 6, 64, 78, 0, 65, +128, 16, 0, 28,128, 0, 1, 7, 64, 16, 0, 1, 0, 17, 0, 7,192, 16, 0, 1, +128, 17, 0, 7, 64, 17, 0, 1, 0, 18, 0, 7,192, 17, 0, 1,128, 18, 0, 7, + 64, 18, 0, 1, 0, 19, 0, 7,192, 18, 0, 30, 0,128, 0, 77, 0, 0, 0, 4, + 6, 0, 0, 0, 69, 82, 82, 79, 82, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, + 8, 0, 0, 0, 78, 79, 69, 82, 82, 79, 82, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 7, 0, 0, 0, 79, 80, 69, 78, 69, 68, 0, 3, 0, 0, 0, 0, 0, 0, +240,191, 4, 8, 0, 0, 0, 73, 78, 86, 65, 76, 73, 68, 0, 4, 7, 0, 0, 0, + 73, 71, 78, 79, 82, 69, 0, 4, 8, 0, 0, 0, 68, 69, 70, 65, 85, 76, 84, 0, + 3, 0, 0, 0, 0, 0, 0, 0,192, 4, 6, 0, 0, 0, 67, 76, 79, 83, 69, 0, + 3, 0, 0, 0, 0, 0, 0, 8,192, 4, 9, 0, 0, 0, 67, 79, 78, 84, 73, 78, + 85, 69, 0, 3, 0, 0, 0, 0, 0, 0, 16,192, 4, 7, 0, 0, 0, 67, 69, 78, + 84, 69, 82, 0, 3, 0, 0, 0, 0,224,255,239, 64, 4, 5, 0, 0, 0, 76, 69, + 70, 84, 0, 3, 0, 0, 0, 0,192,255,239, 64, 4, 6, 0, 0, 0, 82, 73, 71, + 72, 84, 0, 3, 0, 0, 0, 0,160,255,239, 64, 4, 9, 0, 0, 0, 77, 79, 85, + 83, 69, 80, 79, 83, 0, 3, 0, 0, 0, 0,128,255,239, 64, 4, 8, 0, 0, 0, + 67, 85, 82, 82, 69, 78, 84, 0, 3, 0, 0, 0, 0, 96,255,239, 64, 4, 13, 0, + 0, 0, 67, 69, 78, 84, 69, 82, 80, 65, 82, 69, 78, 84, 0, 3, 0, 0, 0, 0, + 64,255,239, 64, 4, 4, 0, 0, 0, 84, 79, 80, 0, 4, 7, 0, 0, 0, 66, 79, + 84, 84, 79, 77, 0, 4, 5, 0, 0, 0, 83, 66, 85, 80, 0, 4, 5, 0, 0, 0, + 83, 66, 68, 78, 0, 4, 7, 0, 0, 0, 83, 66, 80, 71, 85, 80, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 64, 4, 7, 0, 0, 0, 83, 66, 80, 71, 68, 78, 0, 3, 0, + 0, 0, 0, 0, 0, 8, 64, 4, 7, 0, 0, 0, 83, 66, 80, 79, 83, 86, 0, 3, + 0, 0, 0, 0, 0, 0, 16, 64, 4, 8, 0, 0, 0, 83, 66, 68, 82, 65, 71, 86, + 0, 3, 0, 0, 0, 0, 0, 0, 20, 64, 4, 7, 0, 0, 0, 83, 66, 76, 69, 70, + 84, 0, 3, 0, 0, 0, 0, 0, 0, 24, 64, 4, 8, 0, 0, 0, 83, 66, 82, 73, + 71, 72, 84, 0, 3, 0, 0, 0, 0, 0, 0, 28, 64, 4, 9, 0, 0, 0, 83, 66, + 80, 71, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0, 0, 0, 32, 64, 4, 10, 0, 0, + 0, 83, 66, 80, 71, 82, 73, 71, 72, 84, 0, 3, 0, 0, 0, 0, 0, 0, 34, 64, + 4, 7, 0, 0, 0, 83, 66, 80, 79, 83, 72, 0, 3, 0, 0, 0, 0, 0, 0, 36, + 64, 4, 8, 0, 0, 0, 83, 66, 68, 82, 65, 71, 72, 0, 3, 0, 0, 0, 0, 0, + 0, 38, 64, 4, 5, 0, 0, 0, 83, 72, 79, 87, 0, 4, 8, 0, 0, 0, 82, 69, + 83, 84, 79, 82, 69, 0, 4, 9, 0, 0, 0, 77, 73, 78, 73, 77, 73, 90, 69, 0, + 4, 9, 0, 0, 0, 77, 65, 88, 73, 77, 73, 90, 69, 0, 4, 5, 0, 0, 0, 72, + 73, 68, 69, 0, 4, 8, 0, 0, 0, 66, 85, 84, 84, 79, 78, 49, 0, 4, 7, 0, + 0, 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 98,121,116,101, 0, 4, + 2, 0, 0, 0, 49, 0, 4, 8, 0, 0, 0, 66, 85, 84, 84, 79, 78, 50, 0, 4, + 2, 0, 0, 0, 50, 0, 4, 8, 0, 0, 0, 66, 85, 84, 84, 79, 78, 51, 0, 4, + 2, 0, 0, 0, 51, 0, 4, 8, 0, 0, 0, 66, 85, 84, 84, 79, 78, 52, 0, 4, + 2, 0, 0, 0, 52, 0, 4, 8, 0, 0, 0, 66, 85, 84, 84, 79, 78, 53, 0, 4, + 2, 0, 0, 0, 53, 0, 4, 11, 0, 0, 0, 77, 65, 83, 75, 95, 70, 76, 79, 65, + 84, 0, 4, 24, 0, 0, 0, 91, 43, 47, 45, 93, 63, 40, 47,100, 43, 47, 46, 63, + 47,100, 42,124, 47, 46, 47,100, 43, 41, 0, 4, 12, 0, 0, 0, 77, 65, 83, 75, + 95, 85, 70, 76, 79, 65, 84, 0, 4, 18, 0, 0, 0, 40, 47,100, 43, 47, 46, 63, + 47,100, 42,124, 47, 46, 47,100, 43, 41, 0, 4, 12, 0, 0, 0, 77, 65, 83, 75, + 95, 69, 70, 76, 79, 65, 84, 0, 4, 40, 0, 0, 0, 91, 43, 47, 45, 93, 63, 40, + 47,100, 43, 47, 46, 63, 47,100, 42,124, 47, 46, 47,100, 43, 41, 40, 91,101, 69, + 93, 91, 43, 47, 45, 93, 63, 47,100, 43, 41, 63, 0, 4, 9, 0, 0, 0, 77, 65, + 83, 75, 95, 73, 78, 84, 0, 4, 10, 0, 0, 0, 91, 43, 47, 45, 93, 63, 47,100, + 43, 0, 4, 10, 0, 0, 0, 77, 65, 83, 75, 95, 85, 73, 78, 84, 0, 4, 4, 0, + 0, 0, 47,100, 43, 0, 0, 0, 0, 0,102, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 22, 0, + 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 24, 0, + 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 29, 0, + 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 38, 0, + 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 40, 0, 0, 0, 41, 0, + 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 43, 0, + 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 50, 0, + 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 52, 0, + 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 59, 0, + 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 60, 0, + 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, + 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 62, 0, + 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 63, 0, + 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 68, 0, + 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 70, 0, + 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 72, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/constants.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/constants_be32.loh b/iup/srclua5/loh/constants_be32.loh new file mode 100755 index 0000000..eff05cc --- /dev/null +++ b/iup/srclua5/loh/constants_be32.loh @@ -0,0 +1,88 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/constants_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/constants_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 15, 64, 99,111,110, +115,116, 97,110,116,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 2, 0, 0, 0, 92, 0, 0, 64, 1, 0, 0, 0, 7, 0, 0,192, 1, 0, + 0,128, 7, 0, 1, 64, 1, 0, 1, 0, 7, 0, 1,192, 1, 0, 1,128, 7, 0, + 2, 64, 1, 0, 2, 0, 7, 0, 2,192, 1, 0, 2,128, 7, 0, 3, 64, 1, 0, + 3, 0, 7, 0, 3,192, 1, 0, 3,128, 7, 0, 4, 64, 1, 0, 4, 0, 7, 0, + 4,192, 1, 0, 4,128, 7, 0, 2,128, 5, 0, 5, 0, 7, 0, 3, 0, 5, 0, + 5, 64, 7, 0, 5,192, 1, 0, 5,128, 7, 0, 6, 64, 1, 0, 6, 0, 7, 0, + 6,192, 1, 0, 6,128, 7, 0, 7, 64, 1, 0, 7, 0, 7, 0, 7,192, 1, 0, + 7,128, 7, 0, 8, 64, 1, 0, 8, 0, 7, 0, 8,192, 1, 0, 8,128, 7, 0, + 9, 64, 1, 0, 9, 0, 7, 0, 9,192, 1, 0, 9,128, 7, 0, 10, 64, 1, 0, + 10, 0, 7, 0, 10,192, 1, 0, 10,128, 7, 0, 11, 64, 1, 0, 11, 0, 7, 0, + 5,192, 1, 0, 11,128, 7, 0, 6, 64, 1, 0, 11,192, 7, 0, 6,192, 1, 0, + 12, 0, 7, 0, 7, 64, 1, 0, 12, 64, 7, 0, 7,192, 1, 0, 12,128, 7, 0, + 13, 0, 5, 0, 77, 64, 6, 0, 13,128, 65, 1, 0,128, 28, 0, 12,192, 7, 0, + 13, 0, 5, 0, 77, 64, 6, 0, 14, 0, 65, 1, 0,128, 28, 0, 13,192, 7, 0, + 13, 0, 5, 0, 77, 64, 6, 0, 14,128, 65, 1, 0,128, 28, 0, 14, 64, 7, 0, + 13, 0, 5, 0, 77, 64, 6, 0, 15, 0, 65, 1, 0,128, 28, 0, 14,192, 7, 0, + 13, 0, 5, 0, 77, 64, 6, 0, 15,128, 65, 1, 0,128, 28, 0, 15, 64, 7, 0, + 6, 64, 1, 0, 15,192, 7, 0, 5,192, 1, 0, 16, 0, 7, 0, 0, 64, 1, 0, + 16, 64, 7, 0, 0, 64, 1, 0, 16,128, 7, 0,128, 0, 30, 0, 0, 0, 67, 4, + 0, 0, 0, 7, 73, 71, 78, 79, 82, 69, 0, 3,191,240, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 8, 68, 69, 70, 65, 85, 76, 84, 0, 3,192, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 6, 67, 76, 79, 83, 69, 0, 3,192, 8, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 9, 67, 79, 78, 84, 73, 78, 85, 69, 0, 3,192, 16, 0, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 7, 67, 69, 78, 84, 69, 82, 0, 3, 64,239, +255,224, 0, 0, 0, 0, 4, 0, 0, 0, 5, 76, 69, 70, 84, 0, 3, 64,239,255, +192, 0, 0, 0, 0, 4, 0, 0, 0, 6, 82, 73, 71, 72, 84, 0, 3, 64,239,255, +160, 0, 0, 0, 0, 4, 0, 0, 0, 9, 77, 79, 85, 83, 69, 80, 79, 83, 0, 3, + 64,239,255,128, 0, 0, 0, 0, 4, 0, 0, 0, 8, 67, 85, 82, 82, 69, 78, 84, + 0, 3, 64,239,255, 96, 0, 0, 0, 0, 4, 0, 0, 0, 13, 67, 69, 78, 84, 69, + 82, 80, 65, 82, 69, 78, 84, 0, 3, 64,239,255, 64, 0, 0, 0, 0, 4, 0, 0, + 0, 4, 84, 79, 80, 0, 4, 0, 0, 0, 7, 66, 79, 84, 84, 79, 77, 0, 4, 0, + 0, 0, 5, 83, 66, 85, 80, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 5, 83, 66, 68, 78, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 7, 83, 66, 80, 71, 85, 80, 0, 3, 64, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 7, 83, 66, 80, 71, 68, 78, 0, 3, 64, 8, 0, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 7, 83, 66, 80, 79, 83, 86, 0, 3, 64, 16, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 8, 83, 66, 68, 82, 65, 71, 86, 0, 3, 64, 20, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 7, 83, 66, 76, 69, 70, 84, 0, 3, 64, 24, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 8, 83, 66, 82, 73, 71, 72, 84, 0, 3, 64, 28, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 9, 83, 66, 80, 71, 76, 69, 70, 84, 0, 3, 64, + 32, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 10, 83, 66, 80, 71, 82, 73, 71, 72, + 84, 0, 3, 64, 34, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 7, 83, 66, 80, 79, + 83, 72, 0, 3, 64, 36, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 8, 83, 66, 68, + 82, 65, 71, 72, 0, 3, 64, 38, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 83, + 72, 79, 87, 0, 4, 0, 0, 0, 8, 82, 69, 83, 84, 79, 82, 69, 0, 4, 0, 0, + 0, 9, 77, 73, 78, 73, 77, 73, 90, 69, 0, 4, 0, 0, 0, 9, 77, 65, 88, 73, + 77, 73, 90, 69, 0, 4, 0, 0, 0, 5, 72, 73, 68, 69, 0, 4, 0, 0, 0, 8, + 66, 85, 84, 84, 79, 78, 49, 0, 4, 0, 0, 0, 7,115,116,114,105,110,103, 0, + 4, 0, 0, 0, 5, 98,121,116,101, 0, 4, 0, 0, 0, 2, 49, 0, 4, 0, 0, + 0, 8, 66, 85, 84, 84, 79, 78, 50, 0, 4, 0, 0, 0, 2, 50, 0, 4, 0, 0, + 0, 8, 66, 85, 84, 84, 79, 78, 51, 0, 4, 0, 0, 0, 2, 51, 0, 4, 0, 0, + 0, 8, 66, 85, 84, 84, 79, 78, 52, 0, 4, 0, 0, 0, 2, 52, 0, 4, 0, 0, + 0, 8, 66, 85, 84, 84, 79, 78, 53, 0, 4, 0, 0, 0, 2, 53, 0, 4, 0, 0, + 0, 6, 69, 82, 82, 79, 82, 0, 4, 0, 0, 0, 8, 78, 79, 69, 82, 82, 79, 82, + 0, 4, 0, 0, 0, 7, 79, 80, 69, 78, 69, 68, 0, 4, 0, 0, 0, 8, 73, 78, + 86, 65, 76, 73, 68, 0, 0, 0, 0, 0, 0, 0, 0, 92, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, + 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, + 0, 29, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, + 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 37, 0, 0, 0, 37, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, + 0, 43, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, + 0, 46, 0, 0, 0, 46, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, + 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 52, 0, 0, 0, 52, 0, 0, + 0, 52, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, + 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, + 0, 54, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, + 0, 55, 0, 0, 0, 55, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, + 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, + 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/constants_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/constants_be64.loh b/iup/srclua5/loh/constants_be64.loh new file mode 100755 index 0000000..4f434b6 --- /dev/null +++ b/iup/srclua5/loh/constants_be64.loh @@ -0,0 +1,113 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/constants_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/constants_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,110,115,116, 97,110,116,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 2,102, 0, 0, 0, 1, 64, 0, 0, 7, 0, 0, 0, 1, +192, 0, 0, 7,128, 0, 0, 1, 64, 1, 0, 7, 0, 1, 0, 1, 64, 1, 0, 7, +128, 1, 0, 1, 64, 1, 0, 7,192, 1, 0, 1, 64, 2, 0, 7, 0, 2, 0, 1, +192, 2, 0, 7,128, 2, 0, 1, 64, 3, 0, 7, 0, 3, 0, 1,192, 3, 0, 7, +128, 3, 0, 1, 64, 4, 0, 7, 0, 4, 0, 1,192, 4, 0, 7,128, 4, 0, 1, + 64, 5, 0, 7, 0, 5, 0, 1,192, 5, 0, 7,128, 5, 0, 1, 64, 6, 0, 7, + 0, 6, 0, 5, 0, 4, 0, 7,128, 6, 0, 5,128, 4, 0, 7,192, 6, 0, 1, +192, 0, 0, 7, 0, 7, 0, 1, 64, 0, 0, 7, 64, 7, 0, 1,192, 7, 0, 7, +128, 7, 0, 1, 64, 8, 0, 7, 0, 8, 0, 1,192, 8, 0, 7,128, 8, 0, 1, + 64, 9, 0, 7, 0, 9, 0, 1,192, 9, 0, 7,128, 9, 0, 1, 64, 10, 0, 7, + 0, 10, 0, 1,192, 10, 0, 7,128, 10, 0, 1, 64, 11, 0, 7, 0, 11, 0, 1, +192, 11, 0, 7,128, 11, 0, 1, 64, 12, 0, 7, 0, 12, 0, 1,192, 0, 0, 7, +128, 12, 0, 1, 64, 0, 0, 7,192, 12, 0, 1,192, 7, 0, 7, 0, 13, 0, 1, + 64, 8, 0, 7, 64, 13, 0, 1,192, 8, 0, 7,128, 13, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65,128, 14, 0, 28,128, 0, 1, 7,192, 13, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65, 0, 15, 0, 28,128, 0, 1, 7,192, 14, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65,128, 15, 0, 28,128, 0, 1, 7, 64, 15, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65, 0, 16, 0, 28,128, 0, 1, 7,192, 15, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65,128, 16, 0, 28,128, 0, 1, 7, 64, 16, 0, 1, 0, 17, 0, 7, +192, 16, 0, 1,128, 17, 0, 7, 64, 17, 0, 1, 0, 18, 0, 7,192, 17, 0, 1, +128, 18, 0, 7, 64, 18, 0, 1, 0, 19, 0, 7,192, 18, 0, 30, 0,128, 0, 77, + 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 69, 82, 82, 79, 82, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 8, 0, 0, 0, 0, 0, 0, 0, 78, 79, 69, 82, + 82, 79, 82, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 79, 80, 69, 78, 69, 68, 0, 3, 0, 0, 0, 0, 0, 0,240,191, 4, 8, + 0, 0, 0, 0, 0, 0, 0, 73, 78, 86, 65, 76, 73, 68, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0, 73, 71, 78, 79, 82, 69, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, + 68, 69, 70, 65, 85, 76, 84, 0, 3, 0, 0, 0, 0, 0, 0, 0,192, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 67, 76, 79, 83, 69, 0, 3, 0, 0, 0, 0, 0, 0, 8, +192, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67, 79, 78, 84, 73, 78, 85, 69, 0, 3, + 0, 0, 0, 0, 0, 0, 16,192, 4, 7, 0, 0, 0, 0, 0, 0, 0, 67, 69, 78, + 84, 69, 82, 0, 3, 0, 0, 0, 0,224,255,239, 64, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0,192,255,239, 64, 4, 6, 0, 0, + 0, 0, 0, 0, 0, 82, 73, 71, 72, 84, 0, 3, 0, 0, 0, 0,160,255,239, 64, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 79, 85, 83, 69, 80, 79, 83, 0, 3, 0, + 0, 0, 0,128,255,239, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 67, 85, 82, 82, + 69, 78, 84, 0, 3, 0, 0, 0, 0, 96,255,239, 64, 4, 13, 0, 0, 0, 0, 0, + 0, 0, 67, 69, 78, 84, 69, 82, 80, 65, 82, 69, 78, 84, 0, 3, 0, 0, 0, 0, + 64,255,239, 64, 4, 4, 0, 0, 0, 0, 0, 0, 0, 84, 79, 80, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 66, 79, 84, 84, 79, 77, 0, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 85, 80, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 83, 66, 68, 78, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 85, 80, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 68, + 78, 0, 3, 0, 0, 0, 0, 0, 0, 8, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, + 83, 66, 80, 79, 83, 86, 0, 3, 0, 0, 0, 0, 0, 0, 16, 64, 4, 8, 0, 0, + 0, 0, 0, 0, 0, 83, 66, 68, 82, 65, 71, 86, 0, 3, 0, 0, 0, 0, 0, 0, + 20, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 76, 69, 70, 84, 0, 3, 0, + 0, 0, 0, 0, 0, 24, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83, 66, 82, 73, + 71, 72, 84, 0, 3, 0, 0, 0, 0, 0, 0, 28, 64, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 80, 71, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0, 0, 0, 32, 64, + 4, 10, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 82, 73, 71, 72, 84, 0, 3, + 0, 0, 0, 0, 0, 0, 34, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, + 79, 83, 72, 0, 3, 0, 0, 0, 0, 0, 0, 36, 64, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 68, 82, 65, 71, 72, 0, 3, 0, 0, 0, 0, 0, 0, 38, 64, 4, + 5, 0, 0, 0, 0, 0, 0, 0, 83, 72, 79, 87, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 82, 69, 83, 84, 79, 82, 69, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, + 73, 78, 73, 77, 73, 90, 69, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 65, 88, + 73, 77, 73, 90, 69, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72, 73, 68, 69, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 49, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 98,121,116,101, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 49, 0, 4, 8, + 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 50, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0, 50, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, + 78, 51, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 51, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0, 66, 85, 84, 84, 79, 78, 52, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, + 52, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 53, 0, 4, + 2, 0, 0, 0, 0, 0, 0, 0, 53, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 77, + 65, 83, 75, 95, 70, 76, 79, 65, 84, 0, 4, 24, 0, 0, 0, 0, 0, 0, 0, 91, + 43, 47, 45, 93, 63, 40, 47,100, 43, 47, 46, 63, 47,100, 42,124, 47, 46, 47,100, + 43, 41, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 95, 85, 70, 76, + 79, 65, 84, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, 40, 47,100, 43, 47, 46, 63, + 47,100, 42,124, 47, 46, 47,100, 43, 41, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 83, 75, 95, 69, 70, 76, 79, 65, 84, 0, 4, 40, 0, 0, 0, 0, 0, 0, + 0, 91, 43, 47, 45, 93, 63, 40, 47,100, 43, 47, 46, 63, 47,100, 42,124, 47, 46, + 47,100, 43, 41, 40, 91,101, 69, 93, 91, 43, 47, 45, 93, 63, 47,100, 43, 41, 63, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 95, 73, 78, 84, 0, 4, + 10, 0, 0, 0, 0, 0, 0, 0, 91, 43, 47, 45, 93, 63, 47,100, 43, 0, 4, 10, + 0, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 95, 85, 73, 78, 84, 0, 4, 4, 0, + 0, 0, 0, 0, 0, 0, 47,100, 43, 0, 0, 0, 0, 0,102, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, + 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, + 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, + 0, 0, 29, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 38, 0, + 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 40, 0, + 0, 0, 41, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, + 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, + 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, + 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 54, 0, + 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, + 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, + 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, + 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, + 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, + 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 70, 0, + 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, + 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/constants_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/constants_le64.loh b/iup/srclua5/loh/constants_le64.loh new file mode 100755 index 0000000..9771f6f --- /dev/null +++ b/iup/srclua5/loh/constants_le64.loh @@ -0,0 +1,97 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/constants_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/constants_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,110,115,116, 97,110,116,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 2, 92, 0, 0, 0, 1, 64, 0, 0, 7, 0, 0, 0, 1, +192, 0, 0, 7,128, 0, 0, 1, 64, 1, 0, 7, 0, 1, 0, 1,192, 1, 0, 7, +128, 1, 0, 1, 64, 2, 0, 7, 0, 2, 0, 1,192, 2, 0, 7,128, 2, 0, 1, + 64, 3, 0, 7, 0, 3, 0, 1,192, 3, 0, 7,128, 3, 0, 1, 64, 4, 0, 7, + 0, 4, 0, 1,192, 4, 0, 7,128, 4, 0, 5,128, 2, 0, 7, 0, 5, 0, 5, + 0, 3, 0, 7, 64, 5, 0, 1,192, 5, 0, 7,128, 5, 0, 1, 64, 6, 0, 7, + 0, 6, 0, 1,192, 6, 0, 7,128, 6, 0, 1, 64, 7, 0, 7, 0, 7, 0, 1, +192, 7, 0, 7,128, 7, 0, 1, 64, 8, 0, 7, 0, 8, 0, 1,192, 8, 0, 7, +128, 8, 0, 1, 64, 9, 0, 7, 0, 9, 0, 1,192, 9, 0, 7,128, 9, 0, 1, + 64, 10, 0, 7, 0, 10, 0, 1,192, 10, 0, 7,128, 10, 0, 1, 64, 11, 0, 7, + 0, 11, 0, 1,192, 5, 0, 7,128, 11, 0, 1, 64, 6, 0, 7,192, 11, 0, 1, +192, 6, 0, 7, 0, 12, 0, 1, 64, 7, 0, 7, 64, 12, 0, 1,192, 7, 0, 7, +128, 12, 0, 5, 0, 13, 0, 6, 64, 77, 0, 65,128, 13, 0, 28,128, 0, 1, 7, +192, 12, 0, 5, 0, 13, 0, 6, 64, 77, 0, 65, 0, 14, 0, 28,128, 0, 1, 7, +192, 13, 0, 5, 0, 13, 0, 6, 64, 77, 0, 65,128, 14, 0, 28,128, 0, 1, 7, + 64, 14, 0, 5, 0, 13, 0, 6, 64, 77, 0, 65, 0, 15, 0, 28,128, 0, 1, 7, +192, 14, 0, 5, 0, 13, 0, 6, 64, 77, 0, 65,128, 15, 0, 28,128, 0, 1, 7, + 64, 15, 0, 1, 64, 6, 0, 7,192, 15, 0, 1,192, 5, 0, 7, 0, 16, 0, 1, + 64, 0, 0, 7, 64, 16, 0, 1, 64, 0, 0, 7,128, 16, 0, 30, 0,128, 0, 67, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 73, 71, 78, 79, 82, 69, 0, 3, + 0, 0, 0, 0, 0, 0,240,191, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68, 69, 70, + 65, 85, 76, 84, 0, 3, 0, 0, 0, 0, 0, 0, 0,192, 4, 6, 0, 0, 0, 0, + 0, 0, 0, 67, 76, 79, 83, 69, 0, 3, 0, 0, 0, 0, 0, 0, 8,192, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 67, 79, 78, 84, 73, 78, 85, 69, 0, 3, 0, 0, 0, + 0, 0, 0, 16,192, 4, 7, 0, 0, 0, 0, 0, 0, 0, 67, 69, 78, 84, 69, 82, + 0, 3, 0, 0, 0, 0,224,255,239, 64, 4, 5, 0, 0, 0, 0, 0, 0, 0, 76, + 69, 70, 84, 0, 3, 0, 0, 0, 0,192,255,239, 64, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 82, 73, 71, 72, 84, 0, 3, 0, 0, 0, 0,160,255,239, 64, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 77, 79, 85, 83, 69, 80, 79, 83, 0, 3, 0, 0, 0, 0, +128,255,239, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 67, 85, 82, 82, 69, 78, 84, + 0, 3, 0, 0, 0, 0, 96,255,239, 64, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67, + 69, 78, 84, 69, 82, 80, 65, 82, 69, 78, 84, 0, 3, 0, 0, 0, 0, 64,255,239, + 64, 4, 4, 0, 0, 0, 0, 0, 0, 0, 84, 79, 80, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 66, 79, 84, 84, 79, 77, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 83, + 66, 85, 80, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 68, 78, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 83, 66, 80, 71, 85, 80, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 68, 78, 0, 3, 0, 0, + 0, 0, 0, 0, 8, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 79, 83, + 86, 0, 3, 0, 0, 0, 0, 0, 0, 16, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, + 83, 66, 68, 82, 65, 71, 86, 0, 3, 0, 0, 0, 0, 0, 0, 20, 64, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 83, 66, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0, 0, 0, + 24, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83, 66, 82, 73, 71, 72, 84, 0, 3, + 0, 0, 0, 0, 0, 0, 28, 64, 4, 9, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, + 71, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0, 0, 0, 32, 64, 4, 10, 0, 0, 0, + 0, 0, 0, 0, 83, 66, 80, 71, 82, 73, 71, 72, 84, 0, 3, 0, 0, 0, 0, 0, + 0, 34, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 79, 83, 72, 0, 3, + 0, 0, 0, 0, 0, 0, 36, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83, 66, 68, + 82, 65, 71, 72, 0, 3, 0, 0, 0, 0, 0, 0, 38, 64, 4, 5, 0, 0, 0, 0, + 0, 0, 0, 83, 72, 79, 87, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 82, 69, 83, + 84, 79, 82, 69, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 73, 78, 73, 77, 73, + 90, 69, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 65, 88, 73, 77, 73, 90, 69, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72, 73, 68, 69, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 49, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 98,121,116, +101, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 49, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 66, 85, 84, 84, 79, 78, 50, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 50, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 51, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0, 51, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, + 84, 84, 79, 78, 52, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 52, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 53, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0, 53, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 69, 82, 82, 79, 82, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0, 78, 79, 69, 82, 82, 79, 82, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 79, 80, 69, 78, 69, 68, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 73, 78, 86, 65, 76, 73, 68, 0, 0, 0, 0, 0, 92, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, + 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, + 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 34, 0, + 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 36, 0, + 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, + 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, + 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 52, 0, 0, 0, 52, 0, + 0, 0, 52, 0, 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 53, 0, + 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, + 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, + 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, + 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, + 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/constants_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/constants_le64w.loh b/iup/srclua5/loh/constants_le64w.loh new file mode 100755 index 0000000..b2eb2a8 --- /dev/null +++ b/iup/srclua5/loh/constants_le64w.loh @@ -0,0 +1,113 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/constants_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/constants_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64, 99,111,110,115,116, 97,110,116,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 2,102, 0, 0, 0, 1, 64, 0, 0, 7, 0, 0, 0, 1, +192, 0, 0, 7,128, 0, 0, 1, 64, 1, 0, 7, 0, 1, 0, 1, 64, 1, 0, 7, +128, 1, 0, 1, 64, 1, 0, 7,192, 1, 0, 1, 64, 2, 0, 7, 0, 2, 0, 1, +192, 2, 0, 7,128, 2, 0, 1, 64, 3, 0, 7, 0, 3, 0, 1,192, 3, 0, 7, +128, 3, 0, 1, 64, 4, 0, 7, 0, 4, 0, 1,192, 4, 0, 7,128, 4, 0, 1, + 64, 5, 0, 7, 0, 5, 0, 1,192, 5, 0, 7,128, 5, 0, 1, 64, 6, 0, 7, + 0, 6, 0, 5, 0, 4, 0, 7,128, 6, 0, 5,128, 4, 0, 7,192, 6, 0, 1, +192, 0, 0, 7, 0, 7, 0, 1, 64, 0, 0, 7, 64, 7, 0, 1,192, 7, 0, 7, +128, 7, 0, 1, 64, 8, 0, 7, 0, 8, 0, 1,192, 8, 0, 7,128, 8, 0, 1, + 64, 9, 0, 7, 0, 9, 0, 1,192, 9, 0, 7,128, 9, 0, 1, 64, 10, 0, 7, + 0, 10, 0, 1,192, 10, 0, 7,128, 10, 0, 1, 64, 11, 0, 7, 0, 11, 0, 1, +192, 11, 0, 7,128, 11, 0, 1, 64, 12, 0, 7, 0, 12, 0, 1,192, 0, 0, 7, +128, 12, 0, 1, 64, 0, 0, 7,192, 12, 0, 1,192, 7, 0, 7, 0, 13, 0, 1, + 64, 8, 0, 7, 64, 13, 0, 1,192, 8, 0, 7,128, 13, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65,128, 14, 0, 28,128, 0, 1, 7,192, 13, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65, 0, 15, 0, 28,128, 0, 1, 7,192, 14, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65,128, 15, 0, 28,128, 0, 1, 7, 64, 15, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65, 0, 16, 0, 28,128, 0, 1, 7,192, 15, 0, 5, 0, 14, 0, 6, + 64, 78, 0, 65,128, 16, 0, 28,128, 0, 1, 7, 64, 16, 0, 1, 0, 17, 0, 7, +192, 16, 0, 1,128, 17, 0, 7, 64, 17, 0, 1, 0, 18, 0, 7,192, 17, 0, 1, +128, 18, 0, 7, 64, 18, 0, 1, 0, 19, 0, 7,192, 18, 0, 30, 0,128, 0, 77, + 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 69, 82, 82, 79, 82, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 8, 0, 0, 0, 0, 0, 0, 0, 78, 79, 69, 82, + 82, 79, 82, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 79, 80, 69, 78, 69, 68, 0, 3, 0, 0, 0, 0, 0, 0,240,191, 4, 8, + 0, 0, 0, 0, 0, 0, 0, 73, 78, 86, 65, 76, 73, 68, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0, 73, 71, 78, 79, 82, 69, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, + 68, 69, 70, 65, 85, 76, 84, 0, 3, 0, 0, 0, 0, 0, 0, 0,192, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 67, 76, 79, 83, 69, 0, 3, 0, 0, 0, 0, 0, 0, 8, +192, 4, 9, 0, 0, 0, 0, 0, 0, 0, 67, 79, 78, 84, 73, 78, 85, 69, 0, 3, + 0, 0, 0, 0, 0, 0, 16,192, 4, 7, 0, 0, 0, 0, 0, 0, 0, 67, 69, 78, + 84, 69, 82, 0, 3, 0, 0, 0, 0,224,255,239, 64, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0,192,255,239, 64, 4, 6, 0, 0, + 0, 0, 0, 0, 0, 82, 73, 71, 72, 84, 0, 3, 0, 0, 0, 0,160,255,239, 64, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 79, 85, 83, 69, 80, 79, 83, 0, 3, 0, + 0, 0, 0,128,255,239, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 67, 85, 82, 82, + 69, 78, 84, 0, 3, 0, 0, 0, 0, 96,255,239, 64, 4, 13, 0, 0, 0, 0, 0, + 0, 0, 67, 69, 78, 84, 69, 82, 80, 65, 82, 69, 78, 84, 0, 3, 0, 0, 0, 0, + 64,255,239, 64, 4, 4, 0, 0, 0, 0, 0, 0, 0, 84, 79, 80, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 66, 79, 84, 84, 79, 77, 0, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 85, 80, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 83, 66, 68, 78, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 85, 80, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 68, + 78, 0, 3, 0, 0, 0, 0, 0, 0, 8, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, + 83, 66, 80, 79, 83, 86, 0, 3, 0, 0, 0, 0, 0, 0, 16, 64, 4, 8, 0, 0, + 0, 0, 0, 0, 0, 83, 66, 68, 82, 65, 71, 86, 0, 3, 0, 0, 0, 0, 0, 0, + 20, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 76, 69, 70, 84, 0, 3, 0, + 0, 0, 0, 0, 0, 24, 64, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83, 66, 82, 73, + 71, 72, 84, 0, 3, 0, 0, 0, 0, 0, 0, 28, 64, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 80, 71, 76, 69, 70, 84, 0, 3, 0, 0, 0, 0, 0, 0, 32, 64, + 4, 10, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, 71, 82, 73, 71, 72, 84, 0, 3, + 0, 0, 0, 0, 0, 0, 34, 64, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, 66, 80, + 79, 83, 72, 0, 3, 0, 0, 0, 0, 0, 0, 36, 64, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 83, 66, 68, 82, 65, 71, 72, 0, 3, 0, 0, 0, 0, 0, 0, 38, 64, 4, + 5, 0, 0, 0, 0, 0, 0, 0, 83, 72, 79, 87, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 82, 69, 83, 84, 79, 82, 69, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, + 73, 78, 73, 77, 73, 90, 69, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 65, 88, + 73, 77, 73, 90, 69, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72, 73, 68, 69, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 49, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, + 0, 0, 98,121,116,101, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 49, 0, 4, 8, + 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 50, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0, 50, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, + 78, 51, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 51, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0, 66, 85, 84, 84, 79, 78, 52, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, + 52, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 66, 85, 84, 84, 79, 78, 53, 0, 4, + 2, 0, 0, 0, 0, 0, 0, 0, 53, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 77, + 65, 83, 75, 95, 70, 76, 79, 65, 84, 0, 4, 24, 0, 0, 0, 0, 0, 0, 0, 91, + 43, 47, 45, 93, 63, 40, 47,100, 43, 47, 46, 63, 47,100, 42,124, 47, 46, 47,100, + 43, 41, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 95, 85, 70, 76, + 79, 65, 84, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, 40, 47,100, 43, 47, 46, 63, + 47,100, 42,124, 47, 46, 47,100, 43, 41, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, + 77, 65, 83, 75, 95, 69, 70, 76, 79, 65, 84, 0, 4, 40, 0, 0, 0, 0, 0, 0, + 0, 91, 43, 47, 45, 93, 63, 40, 47,100, 43, 47, 46, 63, 47,100, 42,124, 47, 46, + 47,100, 43, 41, 40, 91,101, 69, 93, 91, 43, 47, 45, 93, 63, 47,100, 43, 41, 63, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 95, 73, 78, 84, 0, 4, + 10, 0, 0, 0, 0, 0, 0, 0, 91, 43, 47, 45, 93, 63, 47,100, 43, 0, 4, 10, + 0, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 95, 85, 73, 78, 84, 0, 4, 4, 0, + 0, 0, 0, 0, 0, 0, 47,100, 43, 0, 0, 0, 0, 0,102, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, + 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, + 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, + 0, 0, 29, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 38, 0, + 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 40, 0, + 0, 0, 41, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, + 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, + 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, + 0, 0, 52, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 54, 0, + 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 59, 0, + 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, + 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, + 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, + 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, + 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 70, 0, + 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, + 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/constants_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dial.loh b/iup/srclua5/loh/dial.loh new file mode 100755 index 0000000..ff16026 --- /dev/null +++ b/iup/srclua5/loh/dial.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/dial.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/dial.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,100,105, 97, +108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, + 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128,194,132,100, 0, + 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, + 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0,100,105, 97, +108, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 2, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 13, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, + 2, 0, 0, 0,100, 0, 4, 8, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, + 14, 0, 0, 0,105,117,112, 99,111,110,116,114,111,108,115, 46,104, 0, 4, 14, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, + 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, + 0, 4, 5, 0, 0, 0, 68,105, 97,108, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116, +114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/dial.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dial_be32.loh b/iup/srclua5/loh/dial_be32.loh new file mode 100755 index 0000000..e883239 --- /dev/null +++ b/iup/srclua5/loh/dial_be32.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/dial_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/dial_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,100,105, 97, +108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 19, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9,132,194,128, 9, 0, 0, + 0,100,133,128, 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 3, + 64, 69, 0, 0, 0,128, 0, 3,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, + 0, 15, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 5,100,105, 97, +108, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 2,115, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 0, 0, 0, 13,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, + 0, 0, 0, 2,100, 0, 4, 0, 0, 0, 8,105,110, 99,108,117,100,101, 0, 4, + 0, 0, 0, 14,105,117,112, 99,111,110,116,114,111,108,115, 46,104, 0, 4, 0, + 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, + 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0, +133, 0,192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 2, 4, 0, 0, 0, 5, 68,105, 97,108, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, + 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 99,116, +114,108, 0, 0, 0, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/dial_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dial_be64.loh b/iup/srclua5/loh/dial_be64.loh new file mode 100755 index 0000000..86901b2 --- /dev/null +++ b/iup/srclua5/loh/dial_be64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/dial_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/dial_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,100,105, 97,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,100, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117, +100,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,111,110,116,114, +111,108,115, 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, + 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, + 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 68,105, + 97,108, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/dial_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dial_le64.loh b/iup/srclua5/loh/dial_le64.loh new file mode 100755 index 0000000..44ab7a5 --- /dev/null +++ b/iup/srclua5/loh/dial_le64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/dial_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/dial_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,100,105, 97,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,100, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117, +100,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, 99,111,110,116,114, +111,108,115, 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, + 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, + 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 68,105, + 97,108, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/dial_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dial_le64w.loh b/iup/srclua5/loh/dial_le64w.loh new file mode 100755 index 0000000..38c2cc0 --- /dev/null +++ b/iup/srclua5/loh/dial_le64w.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/dial_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/dial_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,100,105, 97,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,100, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117, +100,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,117,112,100,105, 97,108, 46, +104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, + 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, + 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 68,105, 97,108, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/dial_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/dialog.loh b/iup/srclua5/loh/dialog.loh new file mode 100755 index 0000000..c4c8760 --- /dev/null +++ b/iup/srclua5/loh/dialog.loh @@ -0,0 +1,72 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/dialog.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/dialog.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 12, 0, 0, 0, 64,100,105, 97, +108,111,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 30, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, + 9, 64, 65,130, 74,192, 1, 0, 73, 0,194,131, 73, 0,194,132, 73, 0, 66,133, + 73, 0,195,133, 73,128,195,134, 73, 0,196,135, 73,128,196,136, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,137,100, 64, 0, 0, 9, 64, 0,138,100,128, 0, 0, + 9, 64,128,138,100,192, 0, 0, 9, 64, 0,139, 69,192, 5, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69, 0, 6, 0,128, 0, 0, 0,193, 64, 6, 0, 92, 64,128, 1, + 30, 0,128, 0, 26, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0,100,105, 97,108,111,103, 0, 4, 7, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 73, 0, 4, 9, 0, 0, 0, + 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0,109, 97,112, 95, 99, 98, + 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0,117,110,109, 97,112, 95, 99, 98, + 0, 4, 9, 0, 0, 0, 99,108,111,115,101, 95, 99, 98, 0, 4, 8, 0, 0, 0, +115,104,111,119, 95, 99, 98, 0, 4, 2, 0, 0, 0,110, 0, 4, 8, 0, 0, 0, +109,111,118,101, 95, 99, 98, 0, 4, 3, 0, 0, 0,110,110, 0, 4, 13, 0, 0, + 0,116,114, 97,121, 99,108,105, 99,107, 95, 99, 98, 0, 4, 4, 0, 0, 0,110, +110,110, 0, 4, 13, 0, 0, 0,100,114,111,112,102,105,108,101,115, 95, 99, 98, + 0, 4, 5, 0, 0, 0,115,110,110,110, 0, 4, 14, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 6, 0, 0, 0,112,111,112,117,112, + 0, 4, 7, 0, 0, 0,115,104,111,119,120,121, 0, 4, 8, 0, 0, 0,100,101, +115,116,114,111,121, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101, +116, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 21, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 7, 0, 0, 0, 68,105, 97,108,111, +103, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, + 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, + 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 80,111,112,117,112, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, + 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0,120, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 29, 0, 0, 0, 0, + 3, 0, 7, 7, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, + 1, 0, 1,221, 0, 0, 2,222, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 7, 0, 0, 0, 83,104,111,119, 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108, +101, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0,120, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 2, 0, 0, 0,121, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 33, 0, 0, 0, 0, 1, 0, 3, 5, 0, + 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 33, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108, +101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 4, 0, + 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, + 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, + 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 21, 0, 0, 0, 19, 0, + 0, 0, 25, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 33, 0, + 0, 0, 31, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 14, 0, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/dialog.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dialog_be32.loh b/iup/srclua5/loh/dialog_be32.loh new file mode 100755 index 0000000..5f280fd --- /dev/null +++ b/iup/srclua5/loh/dialog_be32.loh @@ -0,0 +1,72 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/dialog_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/dialog_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 12, 64,100,105, 97, +108,111,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 0, 0, 0, 30, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9, +130, 65, 64, 9, 0, 1,192, 74,131,194, 0, 73,132,194, 0, 73,133, 66, 0, 73, +133,195, 0, 73,134,195,128, 73,135,196, 0, 73,136,196,128, 73,131, 0, 64, 9, + 0, 0, 0,100,137,128, 64, 9, 0, 0, 64,100,138, 0, 64, 9, 0, 0,128,100, +138,128, 64, 9, 0, 0,192,100,139, 0, 64, 9, 0, 5,192, 69, 0, 0, 0,128, + 1, 0, 64, 92, 0, 6, 0, 69, 0, 0, 0,128, 0, 6, 64,193, 1,128, 64, 92, + 0,128, 0, 30, 0, 0, 0, 26, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, + 0, 0, 7,100,105, 97,108,111,103, 0, 4, 0, 0, 0, 7,112, 97,114,101,110, +116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99, +114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 73, 0, 4, 0, 0, 0, 9, + 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 7,109, 97,112, 95, 99, 98, + 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9,117,110,109, 97,112, 95, 99, 98, + 0, 4, 0, 0, 0, 9, 99,108,111,115,101, 95, 99, 98, 0, 4, 0, 0, 0, 8, +115,104,111,119, 95, 99, 98, 0, 4, 0, 0, 0, 2,110, 0, 4, 0, 0, 0, 8, +109,111,118,101, 95, 99, 98, 0, 4, 0, 0, 0, 3,110,110, 0, 4, 0, 0, 0, + 13,116,114, 97,121, 99,108,105, 99,107, 95, 99, 98, 0, 4, 0, 0, 0, 4,110, +110,110, 0, 4, 0, 0, 0, 13,100,114,111,112,102,105,108,101,115, 95, 99, 98, + 0, 4, 0, 0, 0, 5,115,110,110,110, 0, 4, 0, 0, 0, 14, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 6,112,111,112,117,112, + 0, 4, 0, 0, 0, 7,115,104,111,119,120,121, 0, 4, 0, 0, 0, 8,100,101, +115,116,114,111,121, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101, +116, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 21, 0, 2, + 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, 64,198, 1, 0, 0,157, 0, 0, + 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 7, 68,105, 97,108,111, +103, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, + 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 3, 0, 7, 0, 0, 0, + 6, 0, 0, 0,197, 0, 0, 1, 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 64, +220, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 6, 80,111,112,117,112, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, + 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 3, 0, 0, 0, 7, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2,120, + 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2,121, 0, 0, 0, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 29, 0, + 3, 0, 7, 0, 0, 0, 7, 0, 0, 0,197, 0, 0, 1, 0, 0,128, 1, 64, 1, + 0, 1,128, 2, 0, 0,221, 0, 0, 0,222, 0,128, 0, 30, 0, 0, 0, 1, 4, + 0, 0, 0, 7, 83,104,111,119, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, + 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108, +101, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2,120, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 2,121, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 33, 0, 1, 0, 3, 0, 0, + 0, 5, 0, 0, 0, 69, 0, 0, 0,128, 1, 0, 0, 93, 0, 0, 0, 94, 0,128, + 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 8, 68,101,115,116,114,111,121, 0, 0, + 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 1, 0, 0, 0, 7,104, 97,110,100,108, +101, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 21, 0, 0, + 0, 19, 0, 0, 0, 25, 0, 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, + 0, 33, 0, 0, 0, 31, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 14, 0, 0, 0, 29, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/dialog_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dialog_be64.loh b/iup/srclua5/loh/dialog_be64.loh new file mode 100755 index 0000000..94b0b30 --- /dev/null +++ b/iup/srclua5/loh/dialog_be64.loh @@ -0,0 +1,81 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/dialog_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/dialog_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,100,105, 97,108,111,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 30, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74,192, 1, 0, 73, 0,194,131, 73, 0,194,132, + 73, 0, 66,133, 73, 0,195,133, 73,128,195,134, 73, 0,196,135, 73,128,196,136, + 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,137,100, 64, 0, 0, 9, 64, 0,138, +100,128, 0, 0, 9, 64,128,138,100,192, 0, 0, 9, 64, 0,139, 69,192, 5, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 6, 0,128, 0, 0, 0,193, 64, 6, 0, + 92, 64,128, 1, 30, 0,128, 0, 26, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108,111, +103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, + 0, 73, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,112, 95, 99, 98, 0, 4, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,117,110,109, 97, +112, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,108,111,115,101, 95, + 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,104,111,119, 95, 99, 98, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, +109,111,118,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,116,114, 97,121, 99,108,105, 99,107, 95, 99, + 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 13, 0, 0, 0, + 0, 0, 0, 0,100,114,111,112,102,105,108,101,115, 95, 99, 98, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0,115,110,110,110, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,112,111,112,117,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,104, +111,119,120,121, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111, +121, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 19, 0, 0, 0, 21, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, + 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, + 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 68,105, 97,108,111,103, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, + 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, + 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, + 25, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 29, 0, 0, 0, 0, 3, 0, 7, 7, 0, 0, 0,197, 0, 0, 0, 0, + 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, 0, 2,222, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83,104,111,119, + 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 3, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 33, 0, + 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, + 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 1, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 21, 0, 0, 0, 19, 0, 0, 0, 25, 0, + 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 33, 0, 0, 0, 31, 0, + 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 14, 0, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/dialog_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dialog_le64.loh b/iup/srclua5/loh/dialog_le64.loh new file mode 100755 index 0000000..b3f4995 --- /dev/null +++ b/iup/srclua5/loh/dialog_le64.loh @@ -0,0 +1,81 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/dialog_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/dialog_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,100,105, 97,108,111,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 30, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74,192, 1, 0, 73, 0,194,131, 73, 0,194,132, + 73, 0, 66,133, 73, 0,195,133, 73,128,195,134, 73, 0,196,135, 73,128,196,136, + 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,137,100, 64, 0, 0, 9, 64, 0,138, +100,128, 0, 0, 9, 64,128,138,100,192, 0, 0, 9, 64, 0,139, 69,192, 5, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 6, 0,128, 0, 0, 0,193, 64, 6, 0, + 92, 64,128, 1, 30, 0,128, 0, 26, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108,111, +103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, + 0, 73, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,112, 95, 99, 98, 0, 4, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,117,110,109, 97, +112, 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,108,111,115,101, 95, + 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,104,111,119, 95, 99, 98, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, +109,111,118,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,116,114, 97,121, 99,108,105, 99,107, 95, 99, + 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 13, 0, 0, 0, + 0, 0, 0, 0,100,114,111,112,102,105,108,101,115, 95, 99, 98, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0,115,110,110,110, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,112,111,112,117,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,104, +111,119,120,121, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111, +121, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 19, 0, 0, 0, 21, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, + 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, + 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 68,105, 97,108,111,103, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, + 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, + 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, + 25, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 29, 0, 0, 0, 0, 3, 0, 7, 7, 0, 0, 0,197, 0, 0, 0, 0, + 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, 0, 2,222, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83,104,111,119, + 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 3, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 33, 0, + 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, + 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 1, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 21, 0, 0, 0, 19, 0, 0, 0, 25, 0, + 0, 0, 23, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 33, 0, 0, 0, 31, 0, + 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 14, 0, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/dialog_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/dialog_le64w.loh b/iup/srclua5/loh/dialog_le64w.loh new file mode 100755 index 0000000..ef19de9 --- /dev/null +++ b/iup/srclua5/loh/dialog_le64w.loh @@ -0,0 +1,79 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/dialog_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/dialog_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,100,105, 97,108,111,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 29, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74,128, 1, 0, 73, 0,194,131, 73, 0,194,132, + 73, 0, 66,133, 73, 0,195,133, 73,128,195,134, 73, 0,196,135, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,136,100, 64, 0, 0, 9, 64, 0,137,100,128, 0, 0, + 9, 64,128,137,100,192, 0, 0, 9, 64, 0,138, 69, 64, 5, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69,128, 5, 0,128, 0, 0, 0,193,192, 5, 0, 92, 64,128, 1, + 30, 0,128, 0, 24, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108,111,103, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,109, 97,112, 95, 99, 98, 0, 4, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,117,110,109, 97,112, 95, 99, 98, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,108,111,115,101, 95, 99, 98, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,115,104,111,119, 95, 99, 98, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,110, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,116,114, 97,121, + 99,108,105, 99,107, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110, +110, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,100,114,111,112,102,105,108,101,115, + 95, 99, 98, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,115,110,110,110, 0, 4, 14, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,115,104,111,119,120,121, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,100,101,115,116,114,111,121, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 0, 0, 0, 2, 0, + 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, + 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 68,105, + 97,108,111,103, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 24, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, + 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, + 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, + 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 3, 0, 7, 7, 0, + 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, + 0, 2,222, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 83,104,111,119, 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97, +110,100,108,101, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, + 0,120, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 32, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, + 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 32, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97, +110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 20, 0, 0, 0, 18, 0, 0, + 0, 24, 0, 0, 0, 22, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 32, 0, 0, + 0, 30, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 13, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/dialog_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/filedlg.loh b/iup/srclua5/loh/filedlg.loh new file mode 100755 index 0000000..01ac3e4 --- /dev/null +++ b/iup/srclua5/loh/filedlg.loh @@ -0,0 +1,55 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/filedlg.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/filedlg.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 13, 0, 0, 0, 64,102,105,108, +101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 23, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128,194, +132,100, 0, 0, 0, 9, 64,128,133,100, 64, 0, 0, 9, 64, 0,134,100,128, 0, + 0, 9, 64,128,134, 69,128, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 3, + 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 17, 0, 0, + 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0,102,105,108,101, +100,108,103, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 8, 0, 0, 0,102,105,108,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, +115,115, 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 8, 0, + 0, 0, 70,105,108,101, 68,108,103, 0, 4, 6, 0, 0, 0,112,111,112,117,112, + 0, 4, 8, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, 0, 0, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117, +112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, + 0, 16, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, + 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, + 0, 4, 6, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 2, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 20, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, + 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 8, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 20, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 24, + 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, + 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 70,105,108,101, + 68,108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, + 23, 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, 0, + 0, 0, 18, 0, 0, 0, 24, 0, 0, 0, 22, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 9, + 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/filedlg.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/filedlg_be32.loh b/iup/srclua5/loh/filedlg_be32.loh new file mode 100755 index 0000000..13c492c --- /dev/null +++ b/iup/srclua5/loh/filedlg_be32.loh @@ -0,0 +1,55 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/filedlg_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/filedlg_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 13, 64,102,105,108, +101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 0, 23, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, + 9,130, 65, 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9,132,194,128, + 9, 0, 0, 0,100,133,128, 64, 9, 0, 0, 64,100,134, 0, 64, 9, 0, 0,128, +100,134,128, 64, 9, 0, 3,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 3,192, + 69, 0, 0, 0,128, 0, 4, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, + 17, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 8,102,105,108,101, +100,108,103, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, + 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111, +110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 8,102,105,108,101, 95, 99, 98, 0, 4, 0, 0, 0, 3, +115,115, 0, 4, 0, 0, 0, 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, 0, + 0, 8, 70,105,108,101, 68,108,103, 0, 4, 0, 0, 0, 6,112,111,112,117,112, + 0, 4, 0, 0, 0, 8,100,101,115,116,114,111,121, 0, 4, 0, 0, 0, 14, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, + 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117, +112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 16, 0, 3, 0, 7, 0, 0, 0, 6, 0, 0, 0,197, 0, 0, 1, + 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 6, 80,111,112,117,112, 0, 0, 0, 0, 0, 0, 0, 0, 6, + 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 16, 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2,120, 0, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 2,121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 1, 0, 3, 0, 0, 0, 5, 0, + 0, 0, 69, 0, 0, 0,128, 1, 0, 0, 93, 0, 0, 0, 94, 0,128, 0, 30, 0, + 0, 0, 1, 4, 0, 0, 0, 8, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 24, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, 0, + 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 8, 70,105,108,101, + 68,108,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 23, 0, 0, 0, 23, + 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, + 0, 20, 0, 0, 0, 18, 0, 0, 0, 24, 0, 0, 0, 22, 0, 0, 0, 26, 0, 0, + 0, 26, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, + 0, 27, 0, 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, + 0, 0, 9, 0, 0, 0, 22, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/filedlg_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/filedlg_be64.loh b/iup/srclua5/loh/filedlg_be64.loh new file mode 100755 index 0000000..1495118 --- /dev/null +++ b/iup/srclua5/loh/filedlg_be64.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/filedlg_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/filedlg_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,102,105,108,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 23, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0, +131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133,100, 64, 0, 0, 9, 64, 0, +134,100,128, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, 0, 0, 92, 64, 0, + 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64,128, 1, 30, 0,128, + 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,102,105,108,101,100,108,103, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0,102,105,108,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, +115,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70,105,108,101, 68,108,103, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, + 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, + 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 20, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, + 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 20, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 24, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, + 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 70,105,108,101, 68,108,103, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, 0, + 0, 0, 18, 0, 0, 0, 24, 0, 0, 0, 22, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 9, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/filedlg_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/filedlg_le64.loh b/iup/srclua5/loh/filedlg_le64.loh new file mode 100755 index 0000000..5bffda4 --- /dev/null +++ b/iup/srclua5/loh/filedlg_le64.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/filedlg_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/filedlg_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,102,105,108,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 23, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0, +131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133,100, 64, 0, 0, 9, 64, 0, +134,100,128, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, 0, 0, 92, 64, 0, + 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64,128, 1, 30, 0,128, + 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,102,105,108,101,100,108,103, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0,102,105,108,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, +115,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70,105,108,101, 68,108,103, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, + 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, + 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 20, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, + 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 20, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 24, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, + 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 70,105,108,101, 68,108,103, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, 0, + 0, 0, 18, 0, 0, 0, 24, 0, 0, 0, 22, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 9, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/filedlg_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/filedlg_le64w.loh b/iup/srclua5/loh/filedlg_le64w.loh new file mode 100755 index 0000000..14ed985 --- /dev/null +++ b/iup/srclua5/loh/filedlg_le64w.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/filedlg_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/filedlg_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,102,105,108,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 23, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0, +131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133,100, 64, 0, 0, 9, 64, 0, +134,100,128, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, 0, 0, 92, 64, 0, + 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64,128, 1, 30, 0,128, + 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,102,105,108,101,100,108,103, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0,102,105,108,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, +115,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70,105,108,101, 68,108,103, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, + 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, + 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 20, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, + 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 20, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 24, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, + 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 70,105,108,101, 68,108,103, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, 0, + 0, 0, 18, 0, 0, 0, 24, 0, 0, 0, 22, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 9, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/filedlg_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/fill.loh b/iup/srclua5/loh/fill.loh new file mode 100755 index 0000000..a3d0a19 --- /dev/null +++ b/iup/srclua5/loh/fill.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fill.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fill.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,102,105,108, +108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 17, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131, 69, 0, + 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, 0, 0,193,128, + 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,102,105,108,108, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, + 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, + 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 70,105,108,108, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, + 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fill.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/fill_be32.loh b/iup/srclua5/loh/fill_be32.loh new file mode 100755 index 0000000..0a07884 --- /dev/null +++ b/iup/srclua5/loh/fill_be32.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fill_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/fill_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,102,105,108, +108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, 2, + 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, 0, 0,128, 0, 2, +128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, 0, 5,110, +105, 99,107, 0, 4, 0, 0, 0, 5,102,105,108,108, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, + 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, + 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 14, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32, +119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 13, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, 0, + 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 5, 70,105,108,108, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, + 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fill_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/fill_be64.loh b/iup/srclua5/loh/fill_be64.loh new file mode 100755 index 0000000..a1b3504 --- /dev/null +++ b/iup/srclua5/loh/fill_be64.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fill_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fill_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,102,105,108,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,102,105,108,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, + 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 70,105,108,108, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, + 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fill_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/fill_le64.loh b/iup/srclua5/loh/fill_le64.loh new file mode 100755 index 0000000..837ca1b --- /dev/null +++ b/iup/srclua5/loh/fill_le64.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fill_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/fill_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,102,105,108,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,102,105,108,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, + 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 70,105,108,108, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, + 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fill_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/fill_le64w.loh b/iup/srclua5/loh/fill_le64w.loh new file mode 100755 index 0000000..a0edb97 --- /dev/null +++ b/iup/srclua5/loh/fill_le64w.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fill_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/fill_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,102,105,108,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,102,105,108,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, + 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 70,105,108,108, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, + 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fill_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/fontdlg.loh b/iup/srclua5/loh/fontdlg.loh new file mode 100755 index 0000000..9ddd288 --- /dev/null +++ b/iup/srclua5/loh/fontdlg.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fontdlg.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fontdlg.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 13, 0, 0, 0, 64,102,111,110, +116,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0,132,100, 0, 0, + 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, 0, 0, 9, 64,128, +133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, + 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, + 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0,102,111,110,116,100,108,103, 0, + 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, + 0, 0, 0, 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 8, + 0, 0, 0, 70,111,110,116, 68,108,103, 0, 4, 9, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 6, 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, + 0,100,101,115,116,114,111,121, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, + 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100, +103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, + 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0, +128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, + 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, + 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 2, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, +121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 0, 0, 18, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, + 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, + 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, + 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 0, 2, + 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 70,111,110,116, 68,108,103, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, + 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, + 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, + 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fontdlg.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/fontdlg_be32.loh b/iup/srclua5/loh/fontdlg_be32.loh new file mode 100755 index 0000000..70d46ff --- /dev/null +++ b/iup/srclua5/loh/fontdlg_be32.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fontdlg_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fontdlg_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 13, 64,102,111,110, +116,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 0, 22, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, + 9,130, 65, 64, 9,131, 65,192, 9, 0, 0, 0, 74,132, 0, 64, 9, 0, 0, 0, +100,132,128, 64, 9, 0, 0, 64,100,133, 0, 64, 9, 0, 0,128,100,133,128, 64, + 9, 0, 3, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 3, 64, 69, 0, 0, 0, +128, 0, 3,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 15, 4, 0, 0, + 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 8,102,111,110,116,100,108,103, 0, + 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, + 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, + 0, 0, 1, 0, 4, 0, 0, 0, 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, + 0, 0, 8, 70,111,110,116, 68,108,103, 0, 4, 0, 0, 0, 9, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 0, 0, 0, 6,112,111,112,117,112, 0, 4, 0, 0, 0, + 8,100,101,115,116,114,111,121, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, + 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100, +103,101,116, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, + 0, 3, 0, 7, 0, 0, 0, 6, 0, 0, 0,197, 0, 0, 1, 0, 0,128, 1, 64, + 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, + 6, 80,111,112,117,112, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, + 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2,120, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, +121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 18, 0, 1, 0, 3, 0, 0, 0, 5, 0, 0, 0, 69, 0, 0, + 0,128, 1, 0, 0, 93, 0, 0, 0, 94, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, + 0, 0, 8, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, + 0, 0, 1, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 2, + 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, + 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 8, 70,111,110,116, 68,108,103, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, + 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, + 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, + 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 8, 0, 0, 0, 21, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fontdlg_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/fontdlg_be64.loh b/iup/srclua5/loh/fontdlg_be64.loh new file mode 100755 index 0000000..0d6acdd --- /dev/null +++ b/iup/srclua5/loh/fontdlg_be64.loh @@ -0,0 +1,59 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fontdlg_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fontdlg_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,102,111,110,116,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0, +132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, 0, + 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, + 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,102,111,110,116,100,108,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,102,117,110, 99,110, 97,109,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70, +111,110,116, 68,108,103, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, + 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, + 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, + 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, 3, 5, 0, + 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114, +111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 0, 2, + 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70,111,110,116, 68, +108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, + 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fontdlg_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/fontdlg_le64.loh b/iup/srclua5/loh/fontdlg_le64.loh new file mode 100755 index 0000000..d7acd56 --- /dev/null +++ b/iup/srclua5/loh/fontdlg_le64.loh @@ -0,0 +1,59 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fontdlg_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fontdlg_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,102,111,110,116,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0, +132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, 0, + 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, + 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,102,111,110,116,100,108,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,102,117,110, 99,110, 97,109,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70, +111,110,116, 68,108,103, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, + 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, + 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, + 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, 3, 5, 0, + 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114, +111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 0, 2, + 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70,111,110,116, 68, +108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, + 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fontdlg_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/fontdlg_le64w.loh b/iup/srclua5/loh/fontdlg_le64w.loh new file mode 100755 index 0000000..1d3b92e --- /dev/null +++ b/iup/srclua5/loh/fontdlg_le64w.loh @@ -0,0 +1,59 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/fontdlg_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/fontdlg_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,102,111,110,116,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0, +132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, 0, + 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, + 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,102,111,110,116,100,108,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,102,117,110, 99,110, 97,109,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70, +111,110,116, 68,108,103, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 14, 0, + 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, + 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, + 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, 3, 5, 0, + 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 68,101,115,116,114, +111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 0, 2, + 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0, +128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 70,111,110,116, 68, +108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, + 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, + 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/fontdlg_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/frame.loh b/iup/srclua5/loh/frame.loh new file mode 100755 index 0000000..c243823 --- /dev/null +++ b/iup/srclua5/loh/frame.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/frame.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/frame.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,102,114, 97, +109,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 17, + 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131, 69, + 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, 0, 0,193, +128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, 0, 0, 0, +110,105, 99,107, 0, 4, 6, 0, 0, 0,102,114, 97,109,101, 0, 4, 7, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0,105, + 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 13, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64, +192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, + 0, 0, 0, 70,114, 97,109,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, + 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, + 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/frame.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/frame_be32.loh b/iup/srclua5/loh/frame_be32.loh new file mode 100755 index 0000000..afbd184 --- /dev/null +++ b/iup/srclua5/loh/frame_be32.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/frame_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/frame_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,102,114, 97, +109,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, + 2, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, 0, 0,128, 0, + 2,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, 0, 5, +110,105, 99,107, 0, 4, 0, 0, 0, 6,102,114, 97,109,101, 0, 4, 0, 0, 0, + 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, + 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2,105, + 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 14, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, + 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105, +117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 13, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, + 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, + 0, 0, 6, 70,114, 97,109,101, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, + 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, + 16, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/frame_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/frame_be64.loh b/iup/srclua5/loh/frame_be64.loh new file mode 100755 index 0000000..b15a60f --- /dev/null +++ b/iup/srclua5/loh/frame_be64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/frame_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/frame_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,102,114, 97,109,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,102,114, 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 70, +114, 97,109,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, + 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, + 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/frame_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/frame_le64.loh b/iup/srclua5/loh/frame_le64.loh new file mode 100755 index 0000000..f95d1bf --- /dev/null +++ b/iup/srclua5/loh/frame_le64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/frame_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/frame_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,102,114, 97,109,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,102,114, 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 70, +114, 97,109,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, + 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, + 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/frame_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/frame_le64w.loh b/iup/srclua5/loh/frame_le64w.loh new file mode 100755 index 0000000..6f2d88e --- /dev/null +++ b/iup/srclua5/loh/frame_le64w.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/frame_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/frame_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,102,114, 97,109,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,102,114, 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 70, +114, 97,109,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, + 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, + 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/frame_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/gauge.loh b/iup/srclua5/loh/gauge.loh new file mode 100755 index 0000000..0c990ee --- /dev/null +++ b/iup/srclua5/loh/gauge.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/gauge.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/gauge.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,103, 97,117, +103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, + 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, 0, 0, 0, 9, + 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, + 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, + 5, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0,103, 97,117,103,101, 0, + 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, + 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 14, 0, 0, 0,105,117,112, 99, +111,110,116,114,111,108,115, 46,104, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, + 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, + 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, + 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 71, 97, +117,103,101, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/gauge.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/gauge_be32.loh b/iup/srclua5/loh/gauge_be32.loh new file mode 100755 index 0000000..ede646b --- /dev/null +++ b/iup/srclua5/loh/gauge_be32.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/gauge_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/gauge_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,103, 97,117, +103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 18, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9,131,194, 0, 9, 0, 0, 0,100,132, +128, 64, 9, 0, 2,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,192, 69, 0, + 0, 0,128, 0, 3, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 13, 4, + 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 6,103, 97,117,103,101, 0, + 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, + 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, + 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, + 0, 0, 8,105,110, 99,108,117,100,101, 0, 4, 0, 0, 0, 11,105,117,112,103, + 97,117,103,101, 46,104, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101, +116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 2, + 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, 64,198, 1, 0, 0,157, 0, 0, + 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 6, 71, 97,117,103,101, + 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/gauge_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/gauge_be64.loh b/iup/srclua5/loh/gauge_be64.loh new file mode 100755 index 0000000..75fbf2d --- /dev/null +++ b/iup/srclua5/loh/gauge_be64.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/gauge_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/gauge_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,103, 97,117,103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, + 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,103, 97,117,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105, +110, 99,108,117,100,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112,103, + 97,117,103,101, 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 71, + 97,117,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/gauge_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/gauge_le64.loh b/iup/srclua5/loh/gauge_le64.loh new file mode 100755 index 0000000..afd4adf --- /dev/null +++ b/iup/srclua5/loh/gauge_le64.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/gauge_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/gauge_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,103, 97,117,103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, + 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,103, 97,117,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105, +110, 99,108,117,100,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112,103, + 97,117,103,101, 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 71, + 97,117,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/gauge_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/gauge_le64w.loh b/iup/srclua5/loh/gauge_le64w.loh new file mode 100755 index 0000000..74d6621 --- /dev/null +++ b/iup/srclua5/loh/gauge_le64w.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/gauge_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/gauge_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,103, 97,117,103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, + 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,103, 97,117,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105, +110, 99,108,117,100,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112,103, + 97,117,103,101, 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 71, + 97,117,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/gauge_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/glcanvas.loh b/iup/srclua5/loh/glcanvas.loh new file mode 100755 index 0000000..7411f43 --- /dev/null +++ b/iup/srclua5/loh/glcanvas.loh @@ -0,0 +1,65 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluagl51/glcanvas.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluagl51/glcanvas.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 14, 0, 0, 0, 64,103,108, 99, + 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 0, 2, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 9,192, 65,131, 9, 64, 66,132, 74, 64, 0, 0, 73, 0, +195,133, 9, 64, 0,133, 9,128,195,134, 9, 0,196,135,100, 0, 0, 0, 9, 64, +128,136, 69,128, 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 4, 0,128, 0, + 0, 0,193, 0, 5, 0, 92, 64,128, 1, 30, 0,128, 0, 21, 0, 0, 0, 4, 5, + 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, 0,103,108, 99, 97,110,118, 97, +115, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, + 0, 4, 9, 0, 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 4, 8, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 8, 0, 0, 0,105,117,112,103,108, 46,104, + 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, + 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0,110,110, 0, 4, 11, 0, 0, 0, +101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 4, 10, 0, 0, 0,101,120,116,114, 97, 99,111,100,101, 0, 4,150, 1, 0, 0, + 32, 10,105,110,116, 32,105,117,112,103,108,108,117, 97, 95,111,112,101,110, 40, +108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, 32,105, +102, 32, 40,105,117,112,108,117, 97, 95,111,112,101,110, 99, 97,108,108, 95,105, +110,116,101,114,110, 97,108, 40, 76, 41, 41, 10, 32, 32, 32, 32, 73,117,112, 71, + 76, 67, 97,110,118, 97,115, 79,112,101,110, 40, 41, 59, 10, 10, 32, 32,105,117, +112,108,117, 97, 95, 99,104, 97,110,103,101, 69,110,118, 40, 76, 41, 59, 10, 32, + 32,105,117,112,103,108, 99, 97,110,118, 97,115,108,117, 97, 95,111,112,101,110, + 40, 76, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,114,101,116,117,114,110, + 69,110,118, 40, 76, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 48, 59, 10, +125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32, +117,115,101, 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,103,108, + 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117,112, +108,117, 97,103,108, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10, +123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,103,108,108,117, 97, 95, +111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, + 97,116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114,101, + 34,105,117,112,108,117, 97,103,108, 53, 49, 34, 32, 42, 47, 10,105,110,116, 32, +108,117, 97,111,112,101,110, 95,105,117,112,108,117, 97,103,108, 53, 49, 40,108, +117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116, +117,114,110, 32,105,117,112,103,108,108,117, 97, 95,111,112,101,110, 40, 76, 41, + 59, 10,125, 10, 10, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101, +114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 0, 2, 0, + 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, + 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, + 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 38, 0, 0, 0, 43, 0, 0, + 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, + 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 99,116,114,108, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluagl51/glcanvas.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/glcanvas_be32.loh b/iup/srclua5/loh/glcanvas_be32.loh new file mode 100755 index 0000000..c6c7ee9 --- /dev/null +++ b/iup/srclua5/loh/glcanvas_be32.loh @@ -0,0 +1,65 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluagl51/glcanvas_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluagl51/glcanvas_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 14, 64,103,108, 99, + 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 0, 0, 0, 22, 0, 2, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, + 64, 9,130, 65, 64, 9,131, 65,192, 9,132, 66, 64, 9, 0, 0, 64, 74,133,195, + 0, 73,133, 0, 64, 9,134,195,128, 9,135,196, 0, 9, 0, 0, 0,100,136,128, + 64, 9, 0, 4,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 4,192, 69, 0, 0, + 0,128, 0, 5, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 21, 4, 0, + 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 9,103,108, 99, 97,110,118, 97, +115, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, 9,102,117,110, 99,110, 97,109,101, + 0, 4, 0, 0, 0, 9, 71, 76, 67, 97,110,118, 97,115, 0, 4, 0, 0, 0, 8, +105,110, 99,108,117,100,101, 0, 4, 0, 0, 0, 8,105,117,112,103,108, 46,104, + 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 7, + 97, 99,116,105,111,110, 0, 4, 0, 0, 0, 3,110,110, 0, 4, 0, 0, 0, 11, +101,120,116,114, 97,102,117,110, 99,115, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 10,101,120,116,114, 97, 99,111,100,101, 0, 4, 0, 0, 1,150, + 32, 10,105,110,116, 32,105,117,112,103,108,108,117, 97, 95,111,112,101,110, 40, +108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, 32,105, +102, 32, 40,105,117,112,108,117, 97, 95,111,112,101,110, 99, 97,108,108, 95,105, +110,116,101,114,110, 97,108, 40, 76, 41, 41, 10, 32, 32, 32, 32, 73,117,112, 71, + 76, 67, 97,110,118, 97,115, 79,112,101,110, 40, 41, 59, 10, 10, 32, 32,105,117, +112,108,117, 97, 95, 99,104, 97,110,103,101, 69,110,118, 40, 76, 41, 59, 10, 32, + 32,105,117,112,103,108, 99, 97,110,118, 97,115,108,117, 97, 95,111,112,101,110, + 40, 76, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,114,101,116,117,114,110, + 69,110,118, 40, 76, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 48, 59, 10, +125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32, +117,115,101, 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,103,108, + 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117,112, +108,117, 97,103,108, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10, +123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,103,108,108,117, 97, 95, +111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, + 97,116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114,101, + 34,105,117,112,108,117, 97,103,108, 53, 49, 34, 32, 42, 47, 10,105,110,116, 32, +108,117, 97,111,112,101,110, 95,105,117,112,108,117, 97,103,108, 53, 49, 40,108, +117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116, +117,114,110, 32,105,117,112,103,108,108,117, 97, 95,111,112,101,110, 40, 76, 41, + 59, 10,125, 10, 10, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101, +114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, + 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 43, 0, 2, 0, + 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, + 30, 0, 0, 0, 1, 4, 0, 0, 0, 9, 71, 76, 67, 97,110,118, 97,115, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, + 0, 0, 43, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, + 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 38, 0, 0, 0, + 43, 0, 0, 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, + 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, + 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 12, 0, 0, 0, 21, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluagl51/glcanvas_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/glcanvas_be64.loh b/iup/srclua5/loh/glcanvas_be64.loh new file mode 100755 index 0000000..ad012a5 --- /dev/null +++ b/iup/srclua5/loh/glcanvas_be64.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluagl51/glcanvas_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluagl51/glcanvas_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64,103,108, 99, 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 0, 2, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 9, 64, 66,132, 74, 64, + 0, 0, 73, 0,195,133, 9, 64, 0,133, 9,128,195,134, 9, 0,196,135,100, 0, + 0, 0, 9, 64,128,136, 69,128, 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, + 4, 0,128, 0, 0, 0,193, 0, 5, 0, 92, 64,128, 1, 30, 0,128, 0, 21, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,103,108, 99, 97,110,118, 97,115, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,117,112, +103,108, 46,104, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 4, 10, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97, 99,111,100,101, 0, 4, +150, 1, 0, 0, 0, 0, 0, 0, 32, 10,105,110,116, 32,105,117,112,103,108,108, +117, 97, 95,111,112,101,110, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, + 76, 41, 10,123, 10, 32, 32,105,102, 32, 40,105,117,112,108,117, 97, 95,111,112, +101,110, 99, 97,108,108, 95,105,110,116,101,114,110, 97,108, 40, 76, 41, 41, 10, + 32, 32, 32, 32, 73,117,112, 71, 76, 67, 97,110,118, 97,115, 79,112,101,110, 40, + 41, 59, 10, 10, 32, 32,105,117,112,108,117, 97, 95, 99,104, 97,110,103,101, 69, +110,118, 40, 76, 41, 59, 10, 32, 32,105,117,112,103,108, 99, 97,110,118, 97,115, +108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10, 32, 32,105,117,112,108,117, + 97, 95,114,101,116,117,114,110, 69,110,118, 40, 76, 41, 59, 10, 32, 32,114,101, +116,117,114,110, 32, 48, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97, +116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114,101, 34, +105,117,112,108,117, 97,103,108, 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97, +111,112,101,110, 95,105,117,112,108,117, 97,103,108, 40,108,117, 97, 95, 83,116, + 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105, +117,112,103,108,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, + 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32,117,115,101, + 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,103,108, 53, 49, 34, + 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117,112,108, +117, 97,103,108, 53, 49, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, + 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,103,108,108,117, 97, + 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 0, 43, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 42, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 38, 0, 0, 0, 43, 0, 0, + 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, + 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 12, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluagl51/glcanvas_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/glcanvas_le64.loh b/iup/srclua5/loh/glcanvas_le64.loh new file mode 100755 index 0000000..64b6ef4 --- /dev/null +++ b/iup/srclua5/loh/glcanvas_le64.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluagl51/glcanvas_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluagl51/glcanvas_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64,103,108, 99, 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 0, 2, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 9, 64, 66,132, 74, 64, + 0, 0, 73, 0,195,133, 9, 64, 0,133, 9,128,195,134, 9, 0,196,135,100, 0, + 0, 0, 9, 64,128,136, 69,128, 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, + 4, 0,128, 0, 0, 0,193, 0, 5, 0, 92, 64,128, 1, 30, 0,128, 0, 21, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,103,108, 99, 97,110,118, 97,115, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,117,112, +103,108, 46,104, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 4, 10, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97, 99,111,100,101, 0, 4, +150, 1, 0, 0, 0, 0, 0, 0, 32, 10,105,110,116, 32,105,117,112,103,108,108, +117, 97, 95,111,112,101,110, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, + 76, 41, 10,123, 10, 32, 32,105,102, 32, 40,105,117,112,108,117, 97, 95,111,112, +101,110, 99, 97,108,108, 95,105,110,116,101,114,110, 97,108, 40, 76, 41, 41, 10, + 32, 32, 32, 32, 73,117,112, 71, 76, 67, 97,110,118, 97,115, 79,112,101,110, 40, + 41, 59, 10, 10, 32, 32,105,117,112,108,117, 97, 95, 99,104, 97,110,103,101, 69, +110,118, 40, 76, 41, 59, 10, 32, 32,105,117,112,103,108, 99, 97,110,118, 97,115, +108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10, 32, 32,105,117,112,108,117, + 97, 95,114,101,116,117,114,110, 69,110,118, 40, 76, 41, 59, 10, 32, 32,114,101, +116,117,114,110, 32, 48, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97, +116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114,101, 34, +105,117,112,108,117, 97,103,108, 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97, +111,112,101,110, 95,105,117,112,108,117, 97,103,108, 40,108,117, 97, 95, 83,116, + 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105, +117,112,103,108,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, + 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32,117,115,101, + 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,103,108, 53, 49, 34, + 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117,112,108, +117, 97,103,108, 53, 49, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, + 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,103,108,108,117, 97, + 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 0, 43, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 42, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 38, 0, 0, 0, 43, 0, 0, + 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, + 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 12, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluagl51/glcanvas_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/glcanvas_le64w.loh b/iup/srclua5/loh/glcanvas_le64w.loh new file mode 100755 index 0000000..607c204 --- /dev/null +++ b/iup/srclua5/loh/glcanvas_le64w.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluagl51/glcanvas_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluagl51/glcanvas_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64,103,108, 99, 97,110,118, 97,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 0, 2, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 9, 64, 66,132, 74, 64, + 0, 0, 73, 0,195,133, 9, 64, 0,133, 9,128,195,134, 9, 0,196,135,100, 0, + 0, 0, 9, 64,128,136, 69,128, 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, + 4, 0,128, 0, 0, 0,193, 0, 5, 0, 92, 64,128, 1, 30, 0,128, 0, 21, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,103,108, 99, 97,110,118, 97,115, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,117,112, +103,108, 46,104, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 4, 10, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97, 99,111,100,101, 0, 4, +150, 1, 0, 0, 0, 0, 0, 0, 32, 10,105,110,116, 32,105,117,112,103,108,108, +117, 97, 95,111,112,101,110, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, + 76, 41, 10,123, 10, 32, 32,105,102, 32, 40,105,117,112,108,117, 97, 95,111,112, +101,110, 99, 97,108,108, 95,105,110,116,101,114,110, 97,108, 40, 76, 41, 41, 10, + 32, 32, 32, 32, 73,117,112, 71, 76, 67, 97,110,118, 97,115, 79,112,101,110, 40, + 41, 59, 10, 10, 32, 32,105,117,112,108,117, 97, 95, 99,104, 97,110,103,101, 69, +110,118, 40, 76, 41, 59, 10, 32, 32,105,117,112,103,108, 99, 97,110,118, 97,115, +108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10, 32, 32,105,117,112,108,117, + 97, 95,114,101,116,117,114,110, 69,110,118, 40, 76, 41, 59, 10, 32, 32,114,101, +116,117,114,110, 32, 48, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97, +116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114,101, 34, +105,117,112,108,117, 97,103,108, 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97, +111,112,101,110, 95,105,117,112,108,117, 97,103,108, 40,108,117, 97, 95, 83,116, + 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105, +117,112,103,108,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, + 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32,117,115,101, + 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,103,108, 53, 49, 34, + 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117,112,108, +117, 97,103,108, 53, 49, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, + 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,103,108,108,117, 97, + 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 0, 43, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 71, 76, 67, 97,110,118, 97,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 42, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 38, 0, 0, 0, 43, 0, 0, + 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, + 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 12, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluagl51/glcanvas_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/hbox.loh b/iup/srclua5/loh/hbox.loh new file mode 100755 index 0000000..2ab8faa --- /dev/null +++ b/iup/srclua5/loh/hbox.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/hbox.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/hbox.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,104, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131,100, 64, + 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, + 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, 0, + 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0,104, 98,111, +120, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, + 0, 0, 0, 97,112,112,101,110,100, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, + 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, + 0, 0, 2, 0, 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, + 0,156, 64,128, 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, +101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 17, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, + 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, + 0, 0, 72, 98,111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, + 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/hbox.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/hbox_be32.loh b/iup/srclua5/loh/hbox_be32.loh new file mode 100755 index 0000000..dda429c --- /dev/null +++ b/iup/srclua5/loh/hbox_be32.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/hbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/hbox_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,104, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 19, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, 0, + 64,100,132, 0, 64, 9, 0, 2, 64, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, +128, 69, 0, 0, 0,128, 0, 2,192,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, + 0, 12, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 5,104, 98,111, +120, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 4, 66, + 79, 88, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, + 0, 2, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, + 0, 0, 7, 97,112,112,101,110,100, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, + 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105, +100,103,101,116, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 13, 0, 2, 0, 5, 0, 0, 0, 5, 0, 0, 0,133, 0, 0, 0,192, 0,128, 1, + 0, 1,128, 64,156, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 7, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, + 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, +101,108,101,109, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0, +133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, + 0, 5, 72, 98,111,120, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, 0, + 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, + 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/hbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/hbox_be64.loh b/iup/srclua5/loh/hbox_be64.loh new file mode 100755 index 0000000..cfb75a5 --- /dev/null +++ b/iup/srclua5/loh/hbox_be64.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/hbox_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/hbox_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,104, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0, +128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,104, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, +112,112,101,110,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, + 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, + 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72, 98, +111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/hbox_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/hbox_le64.loh b/iup/srclua5/loh/hbox_le64.loh new file mode 100755 index 0000000..fe0e07e --- /dev/null +++ b/iup/srclua5/loh/hbox_le64.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/hbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/hbox_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,104, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0, +128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,104, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, +112,112,101,110,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, + 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, + 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72, 98, +111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/hbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/hbox_le64w.loh b/iup/srclua5/loh/hbox_le64w.loh new file mode 100755 index 0000000..b56d7f4 --- /dev/null +++ b/iup/srclua5/loh/hbox_le64w.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/hbox_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/hbox_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,104, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0, +128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,104, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, +112,112,101,110,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, + 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, + 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72, 98, +111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/hbox_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/image.loh b/iup/srclua5/loh/image.loh new file mode 100755 index 0000000..7dc84a1 --- /dev/null +++ b/iup/srclua5/loh/image.loh @@ -0,0 +1,127 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/image.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/image.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,105,109, 97, +103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, + 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, 0, 0, 0, 9, + 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, + 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, + 5, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0,105,109, 97,103,101, 0, + 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, + 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 11, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 59, 6, + 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, + 32, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, + 32,105,110,116, 32,119, 44, 32,104, 44, 32, 99, 44, 32,110,117,109, 95, 99,111, +108,111,114,115, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97, +114, 32, 42,112,105,120,101,108,115, 59, 10, 32, 32, 73,104, 97,110,100,108,101, + 42, 32,105,104, 59, 10, 32, 32, 99,104, 97,114, 32,115,116,114, 91, 50, 48, 93, + 59, 10, 10, 32, 32,105,102, 32, 40,108,117, 97, 95,105,115,116, 97, 98,108,101, + 40, 76, 44, 32, 49, 41, 41, 10, 32, 32,123, 10, 32, 32, 32, 32,105,110,116, 32, +105, 44, 32,106, 59, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32,116,104, +101, 32,110,117,109, 98,101,114, 32,111,102, 32,108,105,110,101,115, 32, 42, 47, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, + 44, 32, 49, 41, 59, 32, 32, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32, +116,104,101, 32,110,117,109, 98,101,114, 32,111,102, 32, 99,111,108,117,109,110, +115, 32,111,102, 32,116,104,101, 32,102,105,114,115,116, 32,108,105,110,101, 32, + 42, 47, 10, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98,101, +114, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,108,117, 97, 95,103,101,116, +116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,119, 32, 61, + 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, 32, 45, 49, 41, 59, 32, 32, + 10, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, + 32, 32, 32, 32, 10, 32, 32, 32, 32,112,105,120,101,108,115, 32, 61, 32, 40,117, +110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42, 41, 32,109, 97,108,108, +111, 99, 32, 40,104, 42,119, 41, 59, 10, 10, 32, 32, 32, 32,102,111,114, 32, 40, +105, 61, 49, 59, 32,105, 60, 61,104, 59, 32,105, 43, 43, 41, 10, 32, 32, 32, 32, +123, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98, +101,114, 40, 76, 44, 32,105, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32, + 32, 32,102,111,114, 32, 40,106, 61, 49, 59, 32,106, 60, 61,119, 59, 32,106, 43, + 43, 41, 10, 32, 32, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, 32, 32,105, +110,116, 32,105,100,120, 32, 61, 32, 40,105, 45, 49, 41, 42,119, 43, 40,106, 45, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104, +110,117,109, 98,101,114, 40, 76, 44, 32,106, 41, 59, 10, 32, 32, 32, 32, 32, 32, + 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 45, 50, + 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,112,105,120,101,108,115, 91,105,100, +120, 93, 32, 61, 32, 40,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 41, +108,117, 97, 95,116,111,110,117,109, 98,101,114, 40, 76, 44, 32, 45, 49, 41, 59, + 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32,125, 10, 32, 32, 32, 32, 32, 32,108,117, + 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, + 32, 32, 32, 10, 32, 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103, +101, 40,119, 44,104, 44,112,105,120,101,108,115, 41, 59, 32, 32, 10, 32, 32, 32, + 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32, +110,117,109, 95, 99,111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101, +116,110, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111, +108,111,114,115, 32, 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, + 53, 63, 32, 50, 53, 53, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, + 32, 32, 32, 32,102,111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, + 99,111,108,111,114,115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, + 32, 32, 32, 32, 32,108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, + 50, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, + 40,115,116,114, 44, 32, 34, 37,100, 34, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, + 32, 32, 73,117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40, +105,104, 44, 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110, +103, 40, 76, 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, + 10, 32, 32,101,108,115,101, 10, 32, 32,123, 10, 32, 32, 32, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105, +110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,112,105,120,101,108,115, + 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, + 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 41, 59, 10, 32, + 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 40,119, 44, 32, +104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32, 32, 32,102,114,101,101, + 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32,110,117,109, 95, 99, +111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, + 32, 52, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111,108,111,114,115, 32, + 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, 54, 63, 32, 50, 53, + 54, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, 32, 32, 32, 32,102, +111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, 99,111,108,111,114, +115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, +108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, 52, 44, 32, 99, 41, + 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, 40,115,116,114, 44, + 32, 34, 37,100, 34, 44, 32, 99, 45, 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 73, +117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40,105,104, 44, + 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110,103, 40, 76, + 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, + 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, 10, 10, 32, + 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, + 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105, +104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, + 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 32, 10, 32, 10, 0, 4, 14, 0, + 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, + 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 87, 0, 0, 0, 93, 0, 0, 0, 0, 2, 0, 7, 23, 0, 0, 0,134, 0,192, 0, +154, 0, 0, 0, 22, 64, 3,128,134, 64,192, 0,154, 0, 0, 0, 22,128, 2,128, +134,128,192, 0,154, 0, 0, 0, 22,192, 1,128,133,192, 0, 0,198, 0,192, 0, + 6, 65,192, 0, 70,129,192, 0,134, 1,193, 0,157, 0,128, 2,158, 0, 0, 0, + 22, 0, 1,128,133,192, 0, 0,192, 0,128, 0, 6, 1,193, 0,157, 0,128, 1, +158, 0, 0, 0, 30, 0,128, 0, 5, 0, 0, 0, 4, 6, 0, 0, 0,119,105,100, +116,104, 0, 4, 7, 0, 0, 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, +112,105,120,101,108,115, 0, 4, 6, 0, 0, 0, 73,109, 97,103,101, 0, 4, 7, + 0, 0, 0, 99,111,108,111,114,115, 0, 0, 0, 0, 0, 23, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 89, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, + 0, 0, 91, 0, 0, 0, 93, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 8, 0, 0, 0, 84, 0, 0, 0, 93, 0, 0, 0, 87, 0, 0, 0, 95, 0, 0, 0, + 95, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, + 96, 0, 0, 0, 96, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, + 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/image.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/image_be32.loh b/iup/srclua5/loh/image_be32.loh new file mode 100755 index 0000000..87231d9 --- /dev/null +++ b/iup/srclua5/loh/image_be32.loh @@ -0,0 +1,127 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/image_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/image_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,105,109, 97, +103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 18, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9,131,194, 0, 9, 0, 0, 0,100,132, +128, 64, 9, 0, 2,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,192, 69, 0, + 0, 0,128, 0, 3, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 13, 4, + 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 6,105,109, 97,103,101, 0, + 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, + 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, + 0, 0, 4,110,110,115, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 0, 0, 0, 11, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 0, 0, + 6, 59, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, + 32, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, + 32,105,110,116, 32,119, 44, 32,104, 44, 32, 99, 44, 32,110,117,109, 95, 99,111, +108,111,114,115, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97, +114, 32, 42,112,105,120,101,108,115, 59, 10, 32, 32, 73,104, 97,110,100,108,101, + 42, 32,105,104, 59, 10, 32, 32, 99,104, 97,114, 32,115,116,114, 91, 50, 48, 93, + 59, 10, 10, 32, 32,105,102, 32, 40,108,117, 97, 95,105,115,116, 97, 98,108,101, + 40, 76, 44, 32, 49, 41, 41, 10, 32, 32,123, 10, 32, 32, 32, 32,105,110,116, 32, +105, 44, 32,106, 59, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32,116,104, +101, 32,110,117,109, 98,101,114, 32,111,102, 32,108,105,110,101,115, 32, 42, 47, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, + 44, 32, 49, 41, 59, 32, 32, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32, +116,104,101, 32,110,117,109, 98,101,114, 32,111,102, 32, 99,111,108,117,109,110, +115, 32,111,102, 32,116,104,101, 32,102,105,114,115,116, 32,108,105,110,101, 32, + 42, 47, 10, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98,101, +114, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,108,117, 97, 95,103,101,116, +116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,119, 32, 61, + 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, 32, 45, 49, 41, 59, 32, 32, + 10, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, + 32, 32, 32, 32, 10, 32, 32, 32, 32,112,105,120,101,108,115, 32, 61, 32, 40,117, +110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42, 41, 32,109, 97,108,108, +111, 99, 32, 40,104, 42,119, 41, 59, 10, 10, 32, 32, 32, 32,102,111,114, 32, 40, +105, 61, 49, 59, 32,105, 60, 61,104, 59, 32,105, 43, 43, 41, 10, 32, 32, 32, 32, +123, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98, +101,114, 40, 76, 44, 32,105, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32, + 32, 32,102,111,114, 32, 40,106, 61, 49, 59, 32,106, 60, 61,119, 59, 32,106, 43, + 43, 41, 10, 32, 32, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, 32, 32,105, +110,116, 32,105,100,120, 32, 61, 32, 40,105, 45, 49, 41, 42,119, 43, 40,106, 45, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104, +110,117,109, 98,101,114, 40, 76, 44, 32,106, 41, 59, 10, 32, 32, 32, 32, 32, 32, + 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 45, 50, + 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,112,105,120,101,108,115, 91,105,100, +120, 93, 32, 61, 32, 40,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 41, +108,117, 97, 95,116,111,110,117,109, 98,101,114, 40, 76, 44, 32, 45, 49, 41, 59, + 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32,125, 10, 32, 32, 32, 32, 32, 32,108,117, + 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, + 32, 32, 32, 10, 32, 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103, +101, 40,119, 44,104, 44,112,105,120,101,108,115, 41, 59, 32, 32, 10, 32, 32, 32, + 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32, +110,117,109, 95, 99,111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101, +116,110, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111, +108,111,114,115, 32, 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, + 53, 63, 32, 50, 53, 53, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, + 32, 32, 32, 32,102,111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, + 99,111,108,111,114,115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, + 32, 32, 32, 32, 32,108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, + 50, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, + 40,115,116,114, 44, 32, 34, 37,100, 34, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, + 32, 32, 73,117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40, +105,104, 44, 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110, +103, 40, 76, 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, + 10, 32, 32,101,108,115,101, 10, 32, 32,123, 10, 32, 32, 32, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105, +110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,112,105,120,101,108,115, + 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, + 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 41, 59, 10, 32, + 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 40,119, 44, 32, +104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32, 32, 32,102,114,101,101, + 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32,110,117,109, 95, 99, +111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, + 32, 52, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111,108,111,114,115, 32, + 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, 54, 63, 32, 50, 53, + 54, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, 32, 32, 32, 32,102, +111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, 99,111,108,111,114, +115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, +108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, 52, 44, 32, 99, 41, + 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, 40,115,116,114, 44, + 32, 34, 37,100, 34, 44, 32, 99, 45, 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 73, +117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40,105,104, 44, + 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110,103, 40, 76, + 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, + 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, 10, 10, 32, + 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, + 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105, +104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, + 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 32, 10, 32, 10, 0, 4, 0, 0, + 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, + 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, + 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 87, 0, 0, 0, 93, 0, 2, 0, 7, 0, 0, 0, 23, 0,192, 0,134, + 0, 0, 0,154,128, 3, 64, 22, 0,192, 64,134, 0, 0, 0,154,128, 2,128, 22, + 0,192,128,134, 0, 0, 0,154,128, 1,192, 22, 0, 0,192,133, 0,192, 0,198, + 0,192, 65, 6, 0,192,129, 70, 0,193, 1,134, 2,128, 0,157, 0, 0, 0,158, +128, 1, 0, 22, 0, 0,192,133, 0,128, 0,192, 0,193, 1, 6, 1,128, 0,157, + 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 5, 4, 0, 0, 0, 6,119,105,100, +116,104, 0, 4, 0, 0, 0, 7,104,101,105,103,104,116, 0, 4, 0, 0, 0, 7, +112,105,120,101,108,115, 0, 4, 0, 0, 0, 6, 73,109, 97,103,101, 0, 4, 0, + 0, 0, 7, 99,111,108,111,114,115, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, + 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, + 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, + 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, + 0, 89, 0, 0, 0, 89, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, + 0, 91, 0, 0, 0, 91, 0, 0, 0, 93, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 97,114,103, 0, + 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 8, 0, 0, 0, 84, 0, 0, 0, 93, 0, 0, 0, 87, 0, 0, 0, 95, + 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, + 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, + 0, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/image_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/image_be64.loh b/iup/srclua5/loh/image_be64.loh new file mode 100755 index 0000000..d82ee9b --- /dev/null +++ b/iup/srclua5/loh/image_be64.loh @@ -0,0 +1,132 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/image_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/image_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, + 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,105,109, 97,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 59, 6, 0, 0, 0, 0, + 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, + 32, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, + 32,105,110,116, 32,119, 44, 32,104, 44, 32, 99, 44, 32,110,117,109, 95, 99,111, +108,111,114,115, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97, +114, 32, 42,112,105,120,101,108,115, 59, 10, 32, 32, 73,104, 97,110,100,108,101, + 42, 32,105,104, 59, 10, 32, 32, 99,104, 97,114, 32,115,116,114, 91, 50, 48, 93, + 59, 10, 10, 32, 32,105,102, 32, 40,108,117, 97, 95,105,115,116, 97, 98,108,101, + 40, 76, 44, 32, 49, 41, 41, 10, 32, 32,123, 10, 32, 32, 32, 32,105,110,116, 32, +105, 44, 32,106, 59, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32,116,104, +101, 32,110,117,109, 98,101,114, 32,111,102, 32,108,105,110,101,115, 32, 42, 47, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, + 44, 32, 49, 41, 59, 32, 32, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32, +116,104,101, 32,110,117,109, 98,101,114, 32,111,102, 32, 99,111,108,117,109,110, +115, 32,111,102, 32,116,104,101, 32,102,105,114,115,116, 32,108,105,110,101, 32, + 42, 47, 10, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98,101, +114, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,108,117, 97, 95,103,101,116, +116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,119, 32, 61, + 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, 32, 45, 49, 41, 59, 32, 32, + 10, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, + 32, 32, 32, 32, 10, 32, 32, 32, 32,112,105,120,101,108,115, 32, 61, 32, 40,117, +110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42, 41, 32,109, 97,108,108, +111, 99, 32, 40,104, 42,119, 41, 59, 10, 10, 32, 32, 32, 32,102,111,114, 32, 40, +105, 61, 49, 59, 32,105, 60, 61,104, 59, 32,105, 43, 43, 41, 10, 32, 32, 32, 32, +123, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98, +101,114, 40, 76, 44, 32,105, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32, + 32, 32,102,111,114, 32, 40,106, 61, 49, 59, 32,106, 60, 61,119, 59, 32,106, 43, + 43, 41, 10, 32, 32, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, 32, 32,105, +110,116, 32,105,100,120, 32, 61, 32, 40,105, 45, 49, 41, 42,119, 43, 40,106, 45, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104, +110,117,109, 98,101,114, 40, 76, 44, 32,106, 41, 59, 10, 32, 32, 32, 32, 32, 32, + 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 45, 50, + 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,112,105,120,101,108,115, 91,105,100, +120, 93, 32, 61, 32, 40,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 41, +108,117, 97, 95,116,111,110,117,109, 98,101,114, 40, 76, 44, 32, 45, 49, 41, 59, + 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32,125, 10, 32, 32, 32, 32, 32, 32,108,117, + 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, + 32, 32, 32, 10, 32, 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103, +101, 40,119, 44,104, 44,112,105,120,101,108,115, 41, 59, 32, 32, 10, 32, 32, 32, + 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32, +110,117,109, 95, 99,111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101, +116,110, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111, +108,111,114,115, 32, 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, + 53, 63, 32, 50, 53, 53, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, + 32, 32, 32, 32,102,111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, + 99,111,108,111,114,115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, + 32, 32, 32, 32, 32,108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, + 50, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, + 40,115,116,114, 44, 32, 34, 37,100, 34, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, + 32, 32, 73,117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40, +105,104, 44, 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110, +103, 40, 76, 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, + 10, 32, 32,101,108,115,101, 10, 32, 32,123, 10, 32, 32, 32, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105, +110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,112,105,120,101,108,115, + 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, + 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 41, 59, 10, 32, + 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 40,119, 44, 32, +104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32, 32, 32,102,114,101,101, + 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32,110,117,109, 95, 99, +111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, + 32, 52, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111,108,111,114,115, 32, + 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, 54, 63, 32, 50, 53, + 54, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, 32, 32, 32, 32,102, +111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, 99,111,108,111,114, +115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, +108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, 52, 44, 32, 99, 41, + 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, 40,115,116,114, 44, + 32, 34, 37,100, 34, 44, 32, 99, 45, 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 73, +117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40,105,104, 44, + 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110,103, 40, 76, + 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, + 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, 10, 10, 32, + 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, + 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105, +104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, + 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 32, 10, 32, 10, 0, 4, 14, 0, + 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 0, 0, 0, 93, 0, 0, 0, 0, 2, 0, 7, 23, 0, 0, 0,134, 0,192, 0, +154, 0, 0, 0, 22, 64, 3,128,134, 64,192, 0,154, 0, 0, 0, 22,128, 2,128, +134,128,192, 0,154, 0, 0, 0, 22,192, 1,128,133,192, 0, 0,198, 0,192, 0, + 6, 65,192, 0, 70,129,192, 0,134, 1,193, 0,157, 0,128, 2,158, 0, 0, 0, + 22, 0, 1,128,133,192, 0, 0,192, 0,128, 0, 6, 1,193, 0,157, 0,128, 1, +158, 0, 0, 0, 30, 0,128, 0, 5, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, + 0,119,105,100,116,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104,101,105,103, +104,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112,105,120,101,108,115, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 99,111,108,111,114,115, 0, 0, 0, 0, 0, 23, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 89, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, + 0, 0, 91, 0, 0, 0, 93, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 84, 0, 0, 0, 93, 0, 0, 0, + 87, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, + 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/image_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/image_le64.loh b/iup/srclua5/loh/image_le64.loh new file mode 100755 index 0000000..64ea753 --- /dev/null +++ b/iup/srclua5/loh/image_le64.loh @@ -0,0 +1,132 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/image_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/image_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, + 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,105,109, 97,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 59, 6, 0, 0, 0, 0, + 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, + 32, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, + 32,105,110,116, 32,119, 44, 32,104, 44, 32, 99, 44, 32,110,117,109, 95, 99,111, +108,111,114,115, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97, +114, 32, 42,112,105,120,101,108,115, 59, 10, 32, 32, 73,104, 97,110,100,108,101, + 42, 32,105,104, 59, 10, 32, 32, 99,104, 97,114, 32,115,116,114, 91, 50, 48, 93, + 59, 10, 10, 32, 32,105,102, 32, 40,108,117, 97, 95,105,115,116, 97, 98,108,101, + 40, 76, 44, 32, 49, 41, 41, 10, 32, 32,123, 10, 32, 32, 32, 32,105,110,116, 32, +105, 44, 32,106, 59, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32,116,104, +101, 32,110,117,109, 98,101,114, 32,111,102, 32,108,105,110,101,115, 32, 42, 47, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, + 44, 32, 49, 41, 59, 32, 32, 10, 10, 32, 32, 32, 32, 47, 42, 32,103,101,116, 32, +116,104,101, 32,110,117,109, 98,101,114, 32,111,102, 32, 99,111,108,117,109,110, +115, 32,111,102, 32,116,104,101, 32,102,105,114,115,116, 32,108,105,110,101, 32, + 42, 47, 10, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98,101, +114, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,108,117, 97, 95,103,101,116, +116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,119, 32, 61, + 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, 32, 45, 49, 41, 59, 32, 32, + 10, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, + 32, 32, 32, 32, 10, 32, 32, 32, 32,112,105,120,101,108,115, 32, 61, 32, 40,117, +110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42, 41, 32,109, 97,108,108, +111, 99, 32, 40,104, 42,119, 41, 59, 10, 10, 32, 32, 32, 32,102,111,114, 32, 40, +105, 61, 49, 59, 32,105, 60, 61,104, 59, 32,105, 43, 43, 41, 10, 32, 32, 32, 32, +123, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98, +101,114, 40, 76, 44, 32,105, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32, + 32, 32,102,111,114, 32, 40,106, 61, 49, 59, 32,106, 60, 61,119, 59, 32,106, 43, + 43, 41, 10, 32, 32, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, 32, 32,105, +110,116, 32,105,100,120, 32, 61, 32, 40,105, 45, 49, 41, 42,119, 43, 40,106, 45, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104, +110,117,109, 98,101,114, 40, 76, 44, 32,106, 41, 59, 10, 32, 32, 32, 32, 32, 32, + 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 45, 50, + 41, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32,112,105,120,101,108,115, 91,105,100, +120, 93, 32, 61, 32, 40,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 41, +108,117, 97, 95,116,111,110,117,109, 98,101,114, 40, 76, 44, 32, 45, 49, 41, 59, + 10, 32, 32, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, + 49, 41, 59, 10, 32, 32, 32, 32, 32, 32,125, 10, 32, 32, 32, 32, 32, 32,108,117, + 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, + 32, 32, 32, 10, 32, 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103, +101, 40,119, 44,104, 44,112,105,120,101,108,115, 41, 59, 32, 32, 10, 32, 32, 32, + 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32, +110,117,109, 95, 99,111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101, +116,110, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111, +108,111,114,115, 32, 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, + 53, 63, 32, 50, 53, 53, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, + 32, 32, 32, 32,102,111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, + 99,111,108,111,114,115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, + 32, 32, 32, 32, 32,108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, + 50, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, + 40,115,116,114, 44, 32, 34, 37,100, 34, 44, 32, 99, 41, 59, 10, 32, 32, 32, 32, + 32, 32, 73,117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40, +105,104, 44, 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110, +103, 40, 76, 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95, +112,111,112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, + 10, 32, 32,101,108,115,101, 10, 32, 32,123, 10, 32, 32, 32, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 32, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105, +110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32, 32, 32,112,105,120,101,108,115, + 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, + 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 41, 59, 10, 32, + 32, 32, 32,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 40,119, 44, 32, +104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32, 32, 32,102,114,101,101, + 40,112,105,120,101,108,115, 41, 59, 10, 10, 32, 32, 32, 32,110,117,109, 95, 99, +111,108,111,114,115, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, + 32, 52, 41, 59, 10, 32, 32, 32, 32,110,117,109, 95, 99,111,108,111,114,115, 32, + 61, 32,110,117,109, 95, 99,111,108,111,114,115, 62, 50, 53, 54, 63, 32, 50, 53, + 54, 58, 32,110,117,109, 95, 99,111,108,111,114,115, 59, 10, 32, 32, 32, 32,102, +111,114, 40, 99, 61, 49, 59, 32, 99, 60, 61,110,117,109, 95, 99,111,108,111,114, +115, 59, 32, 99, 43, 43, 41, 10, 32, 32, 32, 32,123, 10, 32, 32, 32, 32, 32, 32, +108,117, 97, 95,114, 97,119,103,101,116,105, 40, 76, 44, 32, 52, 44, 32, 99, 41, + 59, 10, 32, 32, 32, 32, 32, 32,115,112,114,105,110,116,102, 40,115,116,114, 44, + 32, 34, 37,100, 34, 44, 32, 99, 45, 49, 41, 59, 10, 32, 32, 32, 32, 32, 32, 73, +117,112, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 40,105,104, 44, + 32,115,116,114, 44, 32,108,117, 97, 95,116,111,115,116,114,105,110,103, 40, 76, + 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, + 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,125, 10, 32, 32,125, 10, 10, 32, + 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, + 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105, +104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, + 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 32, 10, 32, 10, 0, 4, 14, 0, + 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83, +101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 87, 0, 0, 0, 93, 0, 0, 0, 0, 2, 0, 7, 23, 0, 0, 0,134, 0,192, 0, +154, 0, 0, 0, 22, 64, 3,128,134, 64,192, 0,154, 0, 0, 0, 22,128, 2,128, +134,128,192, 0,154, 0, 0, 0, 22,192, 1,128,133,192, 0, 0,198, 0,192, 0, + 6, 65,192, 0, 70,129,192, 0,134, 1,193, 0,157, 0,128, 2,158, 0, 0, 0, + 22, 0, 1,128,133,192, 0, 0,192, 0,128, 0, 6, 1,193, 0,157, 0,128, 1, +158, 0, 0, 0, 30, 0,128, 0, 5, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, + 0,119,105,100,116,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104,101,105,103, +104,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112,105,120,101,108,115, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 99,111,108,111,114,115, 0, 0, 0, 0, 0, 23, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 89, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 91, 0, + 0, 0, 91, 0, 0, 0, 93, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 84, 0, 0, 0, 93, 0, 0, 0, + 87, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, + 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/image_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/image_le64w.loh b/iup/srclua5/loh/image_le64w.loh new file mode 100755 index 0000000..c732956 --- /dev/null +++ b/iup/srclua5/loh/image_le64w.loh @@ -0,0 +1,90 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/image_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/image_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, 9, 0,194,131,100, + 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,105,109, 97,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4,170, 3, 0, 0, 0, 0, + 0, 0, 32, 10, 35,105,110, 99,108,117,100,101, 60,115,116,100,108,105, 98, 46, +104, 62, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, 32, + 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 32, 76, 41, 10,123, 10, 32, 32, +105,110,116, 32,119, 44, 32,104, 44, 32,105, 44, 32,106, 59, 10, 32, 32,117,110, +115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42,105,109,103, 59, 10, 32, 32, + 73,104, 97,110,100,108,101, 32, 42,105,109, 97,103,101, 59, 10, 32, 32, 10, 32, + 32,104, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, 32, 49, 41, + 59, 10, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98,101,114, 40, 76, + 44, 32, 49, 41, 59, 10, 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, + 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,119, 32, 61, 32,108,117, 97, 76, 95,103, +101,116,110, 40, 76, 44, 32, 45, 49, 41, 59, 10, 32, 32,108,117, 97, 95,112,111, +112, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 10, 32, 32,105,109,103, 32, 61, 32, + 40,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42, 41, 32,109, 97, +108,108,111, 99, 32, 40,104, 42,119, 41, 59, 10, 10, 32, 32,102,111,114, 32, 40, +105, 61, 49, 59, 32,105, 60, 61,104, 59, 32,105, 43, 43, 41, 10, 32, 32,123, 10, + 32, 32, 32, 32,108,117, 97, 95,112,117,115,104,110,117,109, 98,101,114, 40, 76, + 44, 32,105, 41, 59, 10, 32, 32, 32, 32,108,117, 97, 95,103,101,116,116, 97, 98, +108,101, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32, 32, 32,102,111,114, 32, 40,106, + 61, 49, 59, 32,106, 60, 61,119, 59, 32,106, 43, 43, 41, 10, 32, 32, 32, 32,123, + 10, 32, 32, 32, 32, 32, 32,105,110,116, 32,105,100,120, 32, 61, 32, 40,105, 45, + 49, 41, 42,119, 43, 40,106, 45, 49, 41, 59, 10, 32, 32, 32, 32, 32, 32,108,117, + 97, 95,112,117,115,104,110,117,109, 98,101,114, 40, 76, 44, 32,106, 41, 59, 10, + 32, 32, 32, 32, 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, 40, 76, + 44, 32, 45, 50, 41, 59, 10, 32, 32, 32, 32, 32, 32,105,109,103, 91,105,100,120, + 93, 32, 61, 32, 40,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 41,108, +117, 97, 95,116,111,110,117,109, 98,101,114, 40, 76, 44, 32, 45, 49, 41, 59, 10, + 32, 32, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32, 32, 32,125, 10, 32, 32, 32, 32,108,117, 97, 95,112,111,112, 40, 76, + 44, 32, 49, 41, 59, 10, 32, 32,125, 10, 32, 32, 10, 32, 32,105,109, 97,103,101, + 32, 61, 32, 73,117,112, 73,109, 97,103,101, 40,119, 44,104, 44,105,109,103, 41, + 59, 32, 32, 10, 32, 32,102,114,101,101, 40,105,109,103, 41, 59, 10, 10, 32, 32, +119, 32, 61, 32,108,117, 97, 76, 95,103,101,116,110, 40, 76, 44, 32, 50, 41, 59, + 10, 10, 32, 32,102,111,114, 40,105, 61, 49, 59, 32,105, 60, 61,119, 59, 32,105, + 43, 43, 41, 10, 32, 32,123, 10, 32, 32, 32, 32,108,117, 97, 95,112,117,115,104, +110,117,109, 98,101,114, 40, 76, 44,105, 41, 59, 10, 32, 32, 32, 32,108,117, 97, + 95,112,117,115,104,110,117,109, 98,101,114, 40, 76, 44,105, 41, 59, 10, 32, 32, + 32, 32,108,117, 97, 95,103,101,116,116, 97, 98,108,101, 40, 76, 44, 32, 50, 41, + 59, 10, 32, 32, 32, 32, 73,117,112, 83,116,111,114,101, 65,116,116,114,105, 98, +117,116,101, 40,105,109, 97,103,101, 44, 32, 40, 99,104, 97,114, 32, 42, 41, 32, +108,117, 97, 95,116,111,115,116,114,105,110,103, 40, 76, 44, 45, 50, 41, 44, 32, + 40, 99,104, 97,114, 32, 42, 41, 32,108,117, 97, 95,116,111,115,116,114,105,110, +103, 40, 76, 44, 45, 49, 41, 41, 59, 10, 32, 32, 32, 32,108,117, 97, 95,112,111, +112, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,125, 10, 32, 32, 10, 32, 32,105,117, +112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,105,109, + 97,103,101, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105, +104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,109, 97,103,101, 41, + 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 32, 10, 32, 10, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 62, 0, 0, 0, 64, 0, 0, 0, 0, 2, 0, 5, 6, 0, 0, 0,133, + 0, 0, 0,192, 0,128, 0, 6, 65,192, 0,157, 0,128, 1,158, 0, 0, 0, 30, + 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103, +101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 99,111,108,111,114,115, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, + 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 59, 0, 0, 0, 64, 0, 0, 0, + 62, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, + 67, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/image_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergb.loh b/iup/srclua5/loh/imagergb.loh new file mode 100755 index 0000000..dd73833 --- /dev/null +++ b/iup/srclua5/loh/imagergb.loh @@ -0,0 +1,58 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergb.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergb.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 14, 0, 0, 0, 64,105,109, 97, +103,101,114,103, 98, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0,132, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 9, 0, 0, + 0,105,109, 97,103,101,114,103, 98, 0, 4, 7, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0,110,110,115, 0, 4, 9, 0, + 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 9, 0, 0, 0, 73,109, 97,103, +101, 82, 71, 66, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 11, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 44, 1, 0, 0, + 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, 82, 71, + 66, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32, +105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110, +116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105,110,116, 32,104, 32, 61, 32,108, +117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 50, 41, 59, 10, + 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42,112,105,120, +101,108,115, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,117, 99, +104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 42, + 51, 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,105,104, 32, 61, 32, + 73,117,112, 73,109, 97,103,101, 82, 71, 66, 40,119, 44, 32,104, 44, 32,112,105, +120,101,108,115, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,108,117,103, +115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,105,117,112,108, +117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95,114, 97,119, 40, 76, + 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101,101, 40,112,105,120,101,108,115, + 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, 32, 10, 0, + 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 6, 7, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0, 6,129,192, 0, 70,193,192, 0,157, 0, 0, 2,158, + 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, 9, 0, 0, 0, 73,109, 97,103, +101, 82, 71, 66, 0, 4, 6, 0, 0, 0,119,105,100,116,104, 0, 4, 7, 0, 0, + 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0,112,105,120,101,108,115, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, + 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, + 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergb.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergb_be32.loh b/iup/srclua5/loh/imagergb_be32.loh new file mode 100755 index 0000000..5825d4d --- /dev/null +++ b/iup/srclua5/loh/imagergb_be32.loh @@ -0,0 +1,58 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergb_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergb_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 14, 64,105,109, 97, +103,101,114,103, 98, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 0, 0, 0, 19, 0, 1,128, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, + 64, 9,130, 65, 64, 9,131, 65,192, 9, 0, 0, 0, 74,132, 0, 64, 9,132,194, +128, 9, 0, 0, 0,100,133,128, 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, 0, + 64, 92, 0, 3, 64, 69, 0, 0, 0,128, 0, 3,128,193, 1,128, 64, 92, 0,128, + 0, 30, 0, 0, 0, 15, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, + 9,105,109, 97,103,101,114,103, 98, 0, 4, 0, 0, 0, 7,112, 97,114,101,110, +116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99, +114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 4,110,110,115, 0, 4, 0, 0, + 0, 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, 0, 0, 9, 73,109, 97,103, +101, 82, 71, 66, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 0, 0, 0, 11, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 0, 0, 1, 44, + 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103,101, 82, 71, + 66, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32, +105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110, +116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105,110,116, 32,104, 32, 61, 32,108, +117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 50, 41, 59, 10, + 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, 42,112,105,120, +101,108,115, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,117, 99, +104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 42, + 51, 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,105,104, 32, 61, 32, + 73,117,112, 73,109, 97,103,101, 82, 71, 66, 40,119, 44, 32,104, 44, 32,112,105, +120,101,108,115, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,108,117,103, +115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,105,117,112,108, +117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95,114, 97,119, 40, 76, + 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101,101, 40,112,105,120,101,108,115, + 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, 32, 10, 0, + 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 2, 0, 6, 0, 0, 0, 7, 0, + 0, 0,133, 0,192, 64,198, 0,192,129, 6, 0,192,193, 70, 2, 0, 0,157, 0, + 0, 0,158, 0,128, 0, 30, 0, 0, 0, 4, 4, 0, 0, 0, 9, 73,109, 97,103, +101, 82, 71, 66, 0, 4, 0, 0, 0, 6,119,105,100,116,104, 0, 4, 0, 0, 0, + 7,104,101,105,103,104,116, 0, 4, 0, 0, 0, 7,112,105,120,101,108,115, 0, + 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, + 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, + 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, + 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, + 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 9, 0, 0, 0, 18, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergb_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergb_be64.loh b/iup/srclua5/loh/imagergb_be64.loh new file mode 100755 index 0000000..b0d488f --- /dev/null +++ b/iup/srclua5/loh/imagergb_be64.loh @@ -0,0 +1,62 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergb_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergb_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101,114,103, 98, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, + 0,132, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64, +128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101,114,103, + 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0,110,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97, +109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, 66, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, + 44, 1, 0, 0, 0, 0, 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, + 32, 73,109, 97,103,101, 82, 71, 66, 40,108,117, 97, 95, 83,116, 97,116,101, 32, + 42, 76, 41, 10,123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, + 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105, +110,116, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, + 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99, +104, 97,114, 32, 42,112,105,120,101,108,115, 32, 61, 32,105,117,112,108,117, 97, + 95, 99,104,101, 99,107,117, 99,104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, + 32, 51, 44, 32,119, 42,104, 42, 51, 41, 59, 10, 32, 32, 73,104, 97,110,100,108, +101, 32, 42,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 82, 71, 66, 40, +119, 44, 32,104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32,105,117,112, +108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, + 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100, +108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101, +101, 40,112,105,120,101,108,115, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, + 49, 59, 10,125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, + 2, 0, 6, 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6,129,192, 0, 70, +193,192, 0,157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, 66, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,119,105,100,116,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112,105,120, +101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, + 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergb_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergb_le64.loh b/iup/srclua5/loh/imagergb_le64.loh new file mode 100755 index 0000000..c73e537 --- /dev/null +++ b/iup/srclua5/loh/imagergb_le64.loh @@ -0,0 +1,62 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergb_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergb_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101,114,103, 98, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, + 0,132, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64, +128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101,114,103, + 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0,110,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97, +109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, 66, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, + 44, 1, 0, 0, 0, 0, 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, + 32, 73,109, 97,103,101, 82, 71, 66, 40,108,117, 97, 95, 83,116, 97,116,101, 32, + 42, 76, 41, 10,123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, + 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105, +110,116, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, + 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99, +104, 97,114, 32, 42,112,105,120,101,108,115, 32, 61, 32,105,117,112,108,117, 97, + 95, 99,104,101, 99,107,117, 99,104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, + 32, 51, 44, 32,119, 42,104, 42, 51, 41, 59, 10, 32, 32, 73,104, 97,110,100,108, +101, 32, 42,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 82, 71, 66, 40, +119, 44, 32,104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32,105,117,112, +108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, + 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100, +108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101, +101, 40,112,105,120,101,108,115, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, + 49, 59, 10,125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, + 2, 0, 6, 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6,129,192, 0, 70, +193,192, 0,157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, 66, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,119,105,100,116,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112,105,120, +101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, + 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergb_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergb_le64w.loh b/iup/srclua5/loh/imagergb_le64w.loh new file mode 100755 index 0000000..f5ce332 --- /dev/null +++ b/iup/srclua5/loh/imagergb_le64w.loh @@ -0,0 +1,62 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergb_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergb_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101,114,103, 98, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, + 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, + 0,132, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64, +128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101,114,103, + 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0,110,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97, +109,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, 66, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, + 44, 1, 0, 0, 0, 0, 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, + 32, 73,109, 97,103,101, 82, 71, 66, 40,108,117, 97, 95, 83,116, 97,116,101, 32, + 42, 76, 41, 10,123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, + 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105, +110,116, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, + 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99, +104, 97,114, 32, 42,112,105,120,101,108,115, 32, 61, 32,105,117,112,108,117, 97, + 95, 99,104,101, 99,107,117, 99,104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, + 32, 51, 44, 32,119, 42,104, 42, 51, 41, 59, 10, 32, 32, 73,104, 97,110,100,108, +101, 32, 42,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 82, 71, 66, 40, +119, 44, 32,104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32,105,117,112, +108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, + 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100, +108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101, +101, 40,112,105,120,101,108,115, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, + 49, 59, 10,125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, + 2, 0, 6, 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6,129,192, 0, 70, +193,192, 0,157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, 66, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,119,105,100,116,104, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112,105,120, +101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, + 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergb_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergba.loh b/iup/srclua5/loh/imagergba.loh new file mode 100755 index 0000000..777450b --- /dev/null +++ b/iup/srclua5/loh/imagergba.loh @@ -0,0 +1,58 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergba.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergba.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 15, 0, 0, 0, 64,105,109, 97, +103,101,114,103, 98, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0,132, 9, +128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, + 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, + 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0,105,109, 97,103,101,114,103, 98, 97, 0, 4, 7, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0,110,110,115, 0, 4, + 9, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 10, 0, 0, 0, 73,109, + 97,103,101, 82, 71, 66, 65, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 11, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 46, + 1, 0, 0, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103, +101, 82, 71, 66, 65, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 76, 41, 10, +123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, + 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105,110,116, 32,104, + 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, + 50, 41, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, + 42,112,105,120,101,108,115, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, + 99,107,117, 99,104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32, +119, 42,104, 42, 52, 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,105, +104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 82, 71, 66, 65, 40,119, 44, 32, +104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32,105,117,112,108,117, 97, + 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, 59, 10, 32, + 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95, +114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101,101, 40,112, +105,120,101,108,115, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10, +125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 6, + 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6,129,192, 0, 70,193,192, 0, +157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, 10, 0, 0, + 0, 73,109, 97,103,101, 82, 71, 66, 65, 0, 4, 6, 0, 0, 0,119,105,100,116, +104, 0, 4, 7, 0, 0, 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0,112, +105,120,101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, + 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, + 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergba.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergba_be32.loh b/iup/srclua5/loh/imagergba_be32.loh new file mode 100755 index 0000000..78ae5a6 --- /dev/null +++ b/iup/srclua5/loh/imagergba_be32.loh @@ -0,0 +1,58 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergba_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergba_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 15, 64,105,109, 97, +103,101,114,103, 98, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 0, 0, 0, 19, 0, 1,128, 10,128, 64, 64, 9, 0, 0,192, 69,129, + 0, 64, 9,130, 65, 64, 9,131, 65,192, 9, 0, 0, 0, 74,132, 0, 64, 9,132, +194,128, 9, 0, 0, 0,100,133,128, 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, + 0, 64, 92, 0, 3, 64, 69, 0, 0, 0,128, 0, 3,128,193, 1,128, 64, 92, 0, +128, 0, 30, 0, 0, 0, 15, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, + 0, 10,105,109, 97,103,101,114,103, 98, 97, 0, 4, 0, 0, 0, 7,112, 97,114, +101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, + 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 4,110,110,115, 0, 4, + 0, 0, 0, 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, 0, 0, 10, 73,109, + 97,103,101, 82, 71, 66, 65, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 11, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 0, + 0, 1, 46, 32, 10,115,116, 97,116,105, 99, 32,105,110,116, 32, 73,109, 97,103, +101, 82, 71, 66, 65, 40,108,117, 97, 95, 83,116, 97,116,101, 32, 42, 76, 41, 10, +123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, + 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, 10, 32, 32,105,110,116, 32,104, + 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, + 50, 41, 59, 10, 32, 32,117,110,115,105,103,110,101,100, 32, 99,104, 97,114, 32, + 42,112,105,120,101,108,115, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, + 99,107,117, 99,104, 97,114, 95, 97,114,114, 97,121, 40, 76, 44, 32, 51, 44, 32, +119, 42,104, 42, 52, 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,105, +104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, 82, 71, 66, 65, 40,119, 44, 32, +104, 44, 32,112,105,120,101,108,115, 41, 59, 10, 32, 32,105,117,112,108,117, 97, + 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,105,104, 41, 59, 10, 32, + 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95, +114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, 32, 32,102,114,101,101, 40,112, +105,120,101,108,115, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10, +125, 10, 32, 10, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, + 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, + 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 2, 0, 6, + 0, 0, 0, 7, 0, 0, 0,133, 0,192, 64,198, 0,192,129, 6, 0,192,193, 70, + 2, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 4, 4, 0, 0, 0, + 10, 73,109, 97,103,101, 82, 71, 66, 65, 0, 4, 0, 0, 0, 6,119,105,100,116, +104, 0, 4, 0, 0, 0, 7,104,101,105,103,104,116, 0, 4, 0, 0, 0, 7,112, +105,120,101,108,115, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, + 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, + 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, + 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, + 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, + 9, 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergba_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergba_be64.loh b/iup/srclua5/loh/imagergba_be64.loh new file mode 100755 index 0000000..4a1db93 --- /dev/null +++ b/iup/srclua5/loh/imagergba_be64.loh @@ -0,0 +1,63 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergba_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergba_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101,114,103, 98, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, + 64, 0,132, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, + 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +110,105, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101,114, +103, 98, 97, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, + 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, +110, 97,109,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, + 71, 66, 65, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, + 99, 0, 4, 46, 1, 0, 0, 0, 0, 0, 0, 32, 10,115,116, 97,116,105, 99, 32, +105,110,116, 32, 73,109, 97,103,101, 82, 71, 66, 65, 40,108,117, 97, 95, 83,116, + 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32,105,110,116, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99, +107,105,110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,117,110,115,105,103,110, +101,100, 32, 99,104, 97,114, 32, 42,112,105,120,101,108,115, 32, 61, 32,105,117, +112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, 95, 97,114,114, 97, +121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 42, 52, 41, 59, 10, 32, 32, 73,104, + 97,110,100,108,101, 32, 42,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, + 82, 71, 66, 65, 40,119, 44, 32,104, 44, 32,112,105,120,101,108,115, 41, 59, 10, + 32, 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, + 44, 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104, +105,104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, + 32, 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 32, 32,114,101, +116,117,114,110, 32, 49, 59, 10,125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 0, 0, + 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100, +103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 28, 0, 0, 0, 0, 2, 0, 6, 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, + 6,129,192, 0, 70,193,192, 0,157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, + 4, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, + 66, 65, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,119,105,100,116,104, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112,105,120,101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, + 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergba_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergba_le64.loh b/iup/srclua5/loh/imagergba_le64.loh new file mode 100755 index 0000000..66b8966 --- /dev/null +++ b/iup/srclua5/loh/imagergba_le64.loh @@ -0,0 +1,63 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergba_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergba_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101,114,103, 98, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, + 64, 0,132, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, + 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +110,105, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101,114, +103, 98, 97, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, + 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, +110, 97,109,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, + 71, 66, 65, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, + 99, 0, 4, 46, 1, 0, 0, 0, 0, 0, 0, 32, 10,115,116, 97,116,105, 99, 32, +105,110,116, 32, 73,109, 97,103,101, 82, 71, 66, 65, 40,108,117, 97, 95, 83,116, + 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32,105,110,116, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99, +107,105,110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,117,110,115,105,103,110, +101,100, 32, 99,104, 97,114, 32, 42,112,105,120,101,108,115, 32, 61, 32,105,117, +112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, 95, 97,114,114, 97, +121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 42, 52, 41, 59, 10, 32, 32, 73,104, + 97,110,100,108,101, 32, 42,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, + 82, 71, 66, 65, 40,119, 44, 32,104, 44, 32,112,105,120,101,108,115, 41, 59, 10, + 32, 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, + 44, 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104, +105,104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, + 32, 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 32, 32,114,101, +116,117,114,110, 32, 49, 59, 10,125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 0, 0, + 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100, +103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 28, 0, 0, 0, 0, 2, 0, 6, 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, + 6,129,192, 0, 70,193,192, 0,157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, + 4, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, + 66, 65, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,119,105,100,116,104, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112,105,120,101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, + 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergba_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/imagergba_le64w.loh b/iup/srclua5/loh/imagergba_le64w.loh new file mode 100755 index 0000000..eedbfad --- /dev/null +++ b/iup/srclua5/loh/imagergba_le64w.loh @@ -0,0 +1,63 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/imagergba_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/imagergba_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,105,109, 97,103,101,114,103, 98, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, + 64, 0,132, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, + 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +110,105, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101,114, +103, 98, 97, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, + 0, 0, 0,110,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, +110, 97,109,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, + 71, 66, 65, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102,117,110, + 99, 0, 4, 46, 1, 0, 0, 0, 0, 0, 0, 32, 10,115,116, 97,116,105, 99, 32, +105,110,116, 32, 73,109, 97,103,101, 82, 71, 66, 65, 40,108,117, 97, 95, 83,116, + 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32,105,110,116, 32,119, 32, 61, 32, +108,117, 97, 76, 95, 99,104,101, 99,107,105,110,116, 40, 76, 44, 32, 49, 41, 59, + 10, 32, 32,105,110,116, 32,104, 32, 61, 32,108,117, 97, 76, 95, 99,104,101, 99, +107,105,110,116, 40, 76, 44, 32, 50, 41, 59, 10, 32, 32,117,110,115,105,103,110, +101,100, 32, 99,104, 97,114, 32, 42,112,105,120,101,108,115, 32, 61, 32,105,117, +112,108,117, 97, 95, 99,104,101, 99,107,117, 99,104, 97,114, 95, 97,114,114, 97, +121, 40, 76, 44, 32, 51, 44, 32,119, 42,104, 42, 52, 41, 59, 10, 32, 32, 73,104, + 97,110,100,108,101, 32, 42,105,104, 32, 61, 32, 73,117,112, 73,109, 97,103,101, + 82, 71, 66, 65, 40,119, 44, 32,104, 44, 32,112,105,120,101,108,115, 41, 59, 10, + 32, 32,105,117,112,108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, + 44, 32,105,104, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104, +105,104, 97,110,100,108,101, 95,114, 97,119, 40, 76, 44, 32,105,104, 41, 59, 10, + 32, 32,102,114,101,101, 40,112,105,120,101,108,115, 41, 59, 10, 32, 32,114,101, +116,117,114,110, 32, 49, 59, 10,125, 10, 32, 10, 0, 4, 14, 0, 0, 0, 0, 0, + 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, + 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100, +103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 28, 0, 0, 0, 0, 2, 0, 6, 7, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, + 6,129,192, 0, 70,193,192, 0,157, 0, 0, 2,158, 0, 0, 0, 30, 0,128, 0, + 4, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 73,109, 97,103,101, 82, 71, + 66, 65, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,119,105,100,116,104, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,104,101,105,103,104,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112,105,120,101,108,115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, + 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/imagergba_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/item.loh b/iup/srclua5/loh/item.loh new file mode 100755 index 0000000..b17b36b --- /dev/null +++ b/iup/srclua5/loh/item.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/item.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/item.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,105,116,101, +109, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, 0,131,100, 0, + 0, 0, 9, 64, 0,133, 69,192, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, + 3, 0,128, 0, 0, 0,193, 64, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 14, 0, + 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0,105,116,101, +109, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 3, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 4, 13, 0, 0, 0,104,105,103,104,108,105,103,104,116, 95, 99, 98, 0, 4, 14, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, + 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, + 0, 4, 5, 0, 0, 0, 73,116,101,109, 0, 4, 6, 0, 0, 0,116,105,116,108, +101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/item.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/item_be32.loh b/iup/srclua5/loh/item_be32.loh new file mode 100755 index 0000000..f707f78 --- /dev/null +++ b/iup/srclua5/loh/item_be32.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/item_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/item_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,105,116,101, +109, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 19, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0,128, 74,131,194, 0, 73,132,194, 0, 73,131, 0, 64, 9, 0, 0, + 0,100,133, 0, 64, 9, 0, 2,192, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 3, + 0, 69, 0, 0, 0,128, 0, 3, 64,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, + 0, 14, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 5,105,116,101, +109, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 3, 83, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, + 4, 0, 0, 0, 13,104,105,103,104,108,105,103,104,116, 95, 99, 98, 0, 4, 0, + 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, + 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0, +133, 0,192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 2, 4, 0, 0, 0, 5, 73,116,101,109, 0, 4, 0, 0, 0, 6,116,105,116,108, +101, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, + 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, + 99,116,114,108, 0, 0, 0, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/item_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/item_be64.loh b/iup/srclua5/loh/item_be64.loh new file mode 100755 index 0000000..45ac562 --- /dev/null +++ b/iup/srclua5/loh/item_be64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/item_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/item_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,105,116,101,109, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64, 0,133, 69,192, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 0, 3, 0,128, 0, 0, 0,193, 64, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 14, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,105,116,101,109, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,104,105,103,104,108,105,103,104,116, 95, 99, + 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, + 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, + 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 73,116,101,109, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/item_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/item_le64.loh b/iup/srclua5/loh/item_le64.loh new file mode 100755 index 0000000..6f43478 --- /dev/null +++ b/iup/srclua5/loh/item_le64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/item_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/item_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,105,116,101,109, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64, 0,133, 69,192, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 0, 3, 0,128, 0, 0, 0,193, 64, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 14, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,105,116,101,109, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,104,105,103,104,108,105,103,104,116, 95, 99, + 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, + 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, + 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 73,116,101,109, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/item_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/item_le64w.loh b/iup/srclua5/loh/item_le64w.loh new file mode 100755 index 0000000..4c635a0 --- /dev/null +++ b/iup/srclua5/loh/item_le64w.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/item_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/item_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,105,116,101,109, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64, 0,133, 69,192, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 0, 3, 0,128, 0, 0, 0,193, 64, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 14, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,105,116,101,109, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,104,105,103,104,108,105,103,104,116, 95, 99, + 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, + 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, + 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 73,116,101,109, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/item_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/iuplua.loh b/iup/srclua5/loh/iuplua.loh new file mode 100755 index 0000000..8f7ee10 --- /dev/null +++ b/iup/srclua5/loh/iuplua.loh @@ -0,0 +1,487 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/iuplua.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/iuplua.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 12, 0, 0, 0, 64,105,117,112, +108,117, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, +114, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 36, 0, 0, 0, 7, 64, 0, 0, + 36, 64, 0, 0, 7,128, 0, 0, 36,128, 0, 0, 69,192, 0, 0,129, 0, 1, 0, + 92, 64, 0, 1, 69, 64, 1, 0,129, 0, 1, 0,193,128, 1, 0, 0, 1, 0, 0, + 92, 64, 0, 2,100,192, 0, 0,164, 0, 1, 0,197,192, 0, 0, 1,193, 1, 0, +220, 64, 0, 1,197, 64, 1, 0, 1,193, 1, 0, 65,129, 1, 0,128, 1,128, 0, +220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 1, 2, 0,128, 1, 0, 1, +220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 65, 2, 0,133,129, 2, 0, +220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65,193, 2, 0,133, 1, 3, 0, +220, 64, 0, 2,228, 64, 1, 0,199, 64, 3, 0,228,128, 1, 0,199,128, 3, 0, +228,192, 1, 0,199,192, 3, 0,202, 64, 0, 0, 10, 1, 0, 0,201, 0,129,136, +199, 0, 4, 0,197, 0, 4, 0, 36, 1, 2, 0,201, 0, 1,137,197, 0, 4, 0, + 36, 65, 2, 0,201, 0,129,137,197, 0, 4, 0, 36,129, 2, 0,201, 0, 1,138, +197, 0, 4, 0, 36,193, 2, 0,201, 0,129,138,197, 0, 4, 0, 36, 1, 3, 0, +201, 0, 1,139,197,192, 5, 0, 5, 1, 4, 0, 65, 1, 1, 0,220, 64,128, 1, +202, 64, 0, 0, 5, 1, 4, 0,201, 0,129,140,199, 0, 6, 0,197, 0, 6, 0, + 36, 65, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 6, 0, 65, 1, 1, 0, +220, 64,128, 1,195, 0,128, 1,199,128, 6, 0,228,128, 3, 0,199,192, 6, 0, +228,192, 3, 0,199, 0, 7, 0,228, 0, 4, 0,199, 64, 7, 0,228, 64, 4, 0, +199,128, 7, 0,228,128, 4, 0,199,192, 7, 0,228,192, 4, 0,199, 0, 8, 0, +197, 64, 8, 0,198,128,200, 1,218, 0, 0, 0, 22,128, 3,128,197, 64, 8, 0, +198,128,200, 1,198,192,200, 1, 5, 65, 9, 0,201, 0, 1,146,197, 64, 8, 0, +198,128,200, 1,198,192,200, 1, 5, 65, 9, 0,201, 0, 1,147,197, 64, 9, 0, + 5, 65, 9, 0,201, 0,129,147,197, 64, 9, 0,201, 0, 73,148, 30, 0,128, 0, + 41, 0, 0, 0, 4, 10, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107,115, 0, 4, + 14, 0, 0, 0,105,117,112, 67, 97,108,108, 77,101,116,104,111,100, 0, 4, 17, + 0, 0, 0, 82,101,103,105,115,116,101,114, 67, 97,108,108, 98, 97, 99,107, 0, + 4, 12, 0, 0, 0,105,117,112, 78,101,119, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0,105,117, +112, 83,101,116, 77,101,116,104,111,100, 0, 4, 8, 0, 0, 0, 95, 95,105,110, +100,101,120, 0, 4, 11, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, + 4, 11, 0, 0, 0, 95, 95,110,101,119,105,110,100,101,120, 0, 4, 11, 0, 0, + 0, 95, 95,116,111,115,116,114,105,110,103, 0, 4, 17, 0, 0, 0,105,104, 97, +110,100,108,101, 95,116,111,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 95, + 95,101,113, 0, 4, 16, 0, 0, 0,105,104, 97,110,100,108,101, 95, 99,111,109, +112, 97,114,101, 0, 4, 16, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101, +116,110, 97,109,101, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 15, 0, 0, 0, 82,101,103,105,115,116, +101,114, 72, 97,110,100,108,101, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, + 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 5, 0, 0, 0, +115,104,111,119, 0, 4, 5, 0, 0, 0,104,105,100,101, 0, 4, 4, 0, 0, 0, +109, 97,112, 0, 4, 12, 0, 0, 0, 99,111,110,115,116,114,117, 99,116,111,114, + 0, 4, 14, 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, + 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 4, 0, + 0, 0, 66, 79, 88, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 20, + 0, 0, 0,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112, +117,112, 0, 4, 14, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, + 69, 0, 4, 5, 0, 0, 0,112, 97, 99,107, 0, 4, 15, 0, 0, 0,112,114,111, +116,101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 9, 0, 0, 0,100,111,115, +116,114,105,110,103, 0, 4, 7, 0, 0, 0,100,111,102,105,108,101, 0, 4, 4, + 0, 0, 0, 82, 71, 66, 0, 4, 3, 0, 0, 0, 95, 71, 0, 4, 8, 0, 0, 0, +112, 97, 99,107, 97,103,101, 0, 4, 7, 0, 0, 0,108,111, 97,100,101,100, 0, + 4, 7, 0, 0, 0,105,117,112,108,117, 97, 0, 4, 4, 0, 0, 0,105,117,112, + 0, 4, 9, 0, 0, 0,105,117,112,108,117, 97, 53, 49, 0, 4, 3, 0, 0, 0, + 95, 77, 0, 4, 9, 0, 0, 0, 95, 80, 65, 67, 75, 65, 71, 69, 0, 20, 0, 0, + 0, 0, 0, 0, 0, 9, 0, 0, 0, 27, 0, 0, 0, 0, 1, 7, 7, 35, 0, 0, + 0,134, 0,192, 0,198, 0, 0, 1,218, 64, 0, 0, 22, 0, 0,128, 30, 0,128, + 0, 5, 65, 0, 0, 64, 1,128, 1, 28,129, 0, 1, 23,128, 64, 2, 22,128, 1, +128, 0, 1,128, 1, 69,193, 0, 0,128, 1,128, 0, 92, 1, 0, 1, 29, 1, 0, + 0, 30, 1, 0, 0, 22, 0, 4,128, 5, 65, 0, 0, 64, 1,128, 1, 28,129, 0, + 1, 23, 0, 65, 2, 22, 0, 2,128, 5, 65, 1, 0,135, 64, 1, 0, 69,129, 1, + 0, 70,193,193, 2,128, 1,128, 1, 92,129, 0, 1, 7, 65, 1, 0, 94, 1, 0, + 1, 22,128, 0,128, 5,129, 1, 0, 6, 1, 66, 2, 30, 1, 0, 1, 30, 0,128, + 0, 9, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 5, 0, 0, 0,116, +121,112,101, 0, 4, 9, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, 4, 7, + 0, 0, 0,117,110,112, 97, 99,107, 0, 4, 7, 0, 0, 0,115,116,114,105,110, +103, 0, 4, 5, 0, 0, 0,115,101,108,102, 0, 4, 4, 0, 0, 0,105,117,112, + 0, 4, 9, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, + 69, 82, 82, 79, 82, 0, 0, 0, 0, 0, 35, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, + 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 25, 0, + 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 27, 0, 0, 0, 6, 0, 0, 0, 5, 0, + 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, 34, 0, 0, 0, 4, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 34, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108, +101, 0, 1, 0, 0, 0, 34, 0, 0, 0, 5, 0, 0, 0,102,117,110, 99, 0, 2, + 0, 0, 0, 34, 0, 0, 0, 5, 0, 0, 0,116,101,109,112, 0, 23, 0, 0, 0, + 30, 0, 0, 0, 7, 0, 0, 0,114,101,115,117,108,116, 0, 28, 0, 0, 0, 30, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 0, + 3, 0, 5, 15, 0, 0, 0,197, 0, 0, 0,198, 0,128, 1,218, 64, 0, 0, 22, +128, 0,128,197, 0, 0, 0, 10, 1, 0, 0,201, 0, 1, 0,197, 0, 0, 0,198, + 0,128, 1,154, 0, 0, 0, 22, 64, 0,128,201, 64, 0, 1, 22, 0, 0,128,201, + 64,128,128, 30, 0,128, 0, 2, 0, 0, 0, 4, 10, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 15, + 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 35, 0, 0, 0, 37, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 5, 0, 0, 0,102,117,110, 99, 0, 0, 0, 0, 0, 14, 0, 0, + 0, 5, 0, 0, 0,116,121,112,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 3, 0, + 0, 0, 99, 98, 0, 9, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 44, 0, 0, 0, 53, 0, 0, 0, 0, 2, 0, 7, 21, 0, 0, 0,128, 0, 0, + 0,195, 0,128, 1, 5, 1, 0, 0, 64, 1, 0, 1,128, 1,128, 0, 28,129,128, + 1,192, 0, 0, 2,218, 0, 0, 0, 22, 0, 0,128,222, 0, 0, 1, 5, 1, 0, + 0, 64, 1, 0, 1,129, 65, 0, 0, 28,129,128, 1,128, 0, 0, 2,154, 64, 0, + 0, 22, 0,252,127, 3, 1, 0, 2, 30, 1, 0, 1, 22, 64,251,127, 30, 0,128, + 0, 2, 0, 0, 0, 4, 7, 0, 0, 0,114, 97,119,103,101,116, 0, 4, 7, 0, + 0, 0,112, 97,114,101,110,116, 0, 0, 0, 0, 0, 21, 0, 0, 0, 45, 0, 0, + 0, 46, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, + 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 50, 0, 0, + 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, + 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 53, 0, 0, + 0, 4, 0, 0, 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 6, 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 20, 0, + 0, 0, 2, 0, 0, 0,112, 0, 1, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, +118, 0, 2, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, + 0, 0, 79, 0, 0, 0, 0, 2, 0, 7, 67, 0, 0, 0,133, 0, 0, 0,134, 64, + 64, 1,192, 0,128, 0,156,128, 0, 1,197,128, 0, 0,198,128,128, 1,218, 0, + 0, 0, 22,192, 3,128,197,192, 0, 0, 0, 1, 0, 0,220,128, 0, 1,218, 0, + 0, 0, 22, 0, 1,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 87, 64, + 65, 2, 22,128, 0,128, 5,129, 1, 0, 65,193, 1, 0, 28, 65, 0, 1, 6, 65, +128, 1, 30, 1, 0, 1, 22, 64, 10,128,197, 0, 2, 0, 0, 1, 0, 0, 64, 1, + 0, 1,220,128,128, 1,218, 64, 0, 0, 22,192, 3,128, 5,193, 0, 0, 64, 1, + 0, 0, 28,129, 0, 1, 26, 1, 0, 0, 22, 0, 1,128, 69, 1, 1, 0,128, 1, + 0, 2, 92,129, 0, 1, 87, 64,193, 2, 22,128, 0,128, 69,129, 1, 0,129,193, + 1, 0, 92, 65, 0, 1, 70, 65, 0, 2, 94, 1, 0, 1, 22,192, 4,128, 5, 1, + 1, 0, 64, 1,128, 1, 28,129, 0, 1, 87, 64, 66, 2, 22, 0, 1,128, 5, 1, + 1, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 64, 2, 22, 0, 2,128, 5,129, + 2, 0, 64, 1,128, 1, 28,129, 0, 1, 26, 1, 0, 0, 22, 64, 0,128, 30, 1, + 0, 1, 22,128, 0,128,222, 0, 0, 1, 22, 0, 0,128,222, 0, 0, 1, 30, 0, +128, 0, 11, 0, 0, 0, 4, 7, 0, 0, 0,115,116,114,105,110,103, 0, 4, 6, + 0, 0, 0,117,112,112,101,114, 0, 4, 10, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107,115, 0, 4, 13, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101, +116, 0, 4, 5, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0,116, 97, 98, +108,101, 0, 4, 6, 0, 0, 0,101,114,114,111,114, 0, 4, 19, 0, 0, 0,105, +110,118, 97,108,105,100, 32,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 13, + 0, 0, 0, 71,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 7, 0, 0, + 0,110,117,109, 98,101,114, 0, 4, 10, 0, 0, 0, 71,101,116, 72, 97,110,100, +108,101, 0, 0, 0, 0, 0, 67, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, + 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, + 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 64, 0, 0, 0, 64, + 0, 0, 0, 64, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, + 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, + 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, + 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, + 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, + 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 73, + 0, 0, 0, 74, 0, 0, 0, 74, 0, 0, 0, 76, 0, 0, 0, 79, 0, 0, 0, 7, + 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 66, 0, + 0, 0, 6, 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 66, 0, 0, 0, + 6, 0, 0, 0, 73, 78, 68, 69, 88, 0, 4, 0, 0, 0, 66, 0, 0, 0, 7, 0, + 0, 0,111, 98,106,101, 99,116, 0, 11, 0, 0, 0, 23, 0, 0, 0, 6, 0, 0, + 0,118, 97,108,117,101, 0, 28, 0, 0, 0, 66, 0, 0, 0, 7, 0, 0, 0,111, + 98,106,101, 99,116, 0, 33, 0, 0, 0, 45, 0, 0, 0, 3, 0, 0, 0,105,104, + 0, 59, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, + 0,109, 0, 0, 0, 0, 3, 0, 14, 78, 0, 0, 0,197, 0, 0, 0, 0, 1,128, + 0,220,128, 0, 1, 5, 1, 0, 0, 64, 1, 0, 1, 28,129, 0, 1, 69, 65, 0, + 0,128, 1, 0, 0, 92,129, 0, 1, 90, 1, 0, 0, 22, 0, 1,128,133, 1, 0, + 0,192, 1,128, 2,156,129, 0, 1, 87,128, 64, 3, 22,128, 0,128,133,193, 0, + 0,193, 1, 1, 0,156, 65, 0, 1, 87, 64,193, 1, 22, 64, 0,128, 23,128,193, + 1, 22, 0, 13,128,133,129, 1, 0,134,193, 65, 3,192, 1,128, 0,156,129, 0, + 1,197, 1, 2, 0,198,129,129, 3,218, 1, 0, 0, 22,128, 3,128, 6, 66,194, + 3, 26, 66, 0, 0, 22,192, 0,128, 69,130, 2, 0,128, 2, 0, 0, 92,130, 0, + 1, 6, 66,130, 3, 69,194, 2, 0,128, 2, 0, 0,192, 2, 0, 3, 0, 3, 0, + 4, 64, 3, 0, 1, 92, 66,128, 2, 73,129,128, 0, 22,128, 7,128, 5, 2, 3, + 0, 64, 2, 0, 1, 28,130, 0, 1, 23, 64, 67, 4, 22, 64, 2,128, 5,130, 3, + 0, 64, 2, 0, 1, 28,130, 0, 1, 69,194, 3, 0,128, 2, 0, 0,192, 2, 0, + 3, 0, 3, 0, 4, 92, 66, 0, 2, 73, 1,196, 0, 22,192, 3,128, 87,128, 65, + 2, 22,192, 0,128, 87, 64, 65, 2, 22, 64, 0,128, 23, 64, 68, 2, 22,128, 1, +128, 5,194, 3, 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2, 0, 1, 28, 66, 0, + 2, 73, 1,196, 0, 22,128, 0,128, 73,129,128, 0, 22, 0, 0,128, 73,129,128, + 0, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, 0, 0, 0,116,121,112,101, 0, 4, + 13, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101,116, 0, 4, 6, 0, + 0, 0,116, 97, 98,108,101, 0, 4, 6, 0, 0, 0,101,114,114,111,114, 0, 4, + 19, 0, 0, 0,105,110,118, 97,108,105,100, 32,105,117,112, 32,104, 97,110,100, +108,101, 0, 4, 7, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 7, 0, 0, 0, +115,116,114,105,110,103, 0, 4, 6, 0, 0, 0,117,112,112,101,114, 0, 4, 10, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107,115, 0, 3, 0, 0, 0, 0, 0, 0, +240, 63, 4, 13, 0, 0, 0, 71,101,116, 67,108, 97,115,115, 78, 97,109,101, 0, + 4, 15, 0, 0, 0,105,117,112, 83,101,116, 67, 97,108,108, 98, 97, 99,107, 0, + 4, 12, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 16, 0, 0, 0,105,104, + 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 13, 0, 0, 0, 83, +101,116, 65,116,116,114,105, 98,117,116,101, 0, 0, 4, 4, 0, 0, 0,110,105, +108, 0, 0, 0, 0, 0, 78, 0, 0, 0, 82, 0, 0, 0, 82, 0, 0, 0, 82, 0, + 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 84, 0, 0, 0, 84, 0, + 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, + 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, + 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 86, 0, 0, 0, 86, 0, 0, 0, 86, 0, + 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 88, 0, + 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 90, 0, 0, 0, 91, 0, + 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 92, 0, 0, 0, 92, 0, 0, 0, 92, 0, + 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, + 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 96, 0, 0, 0, 96, 0, + 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 97, 0, 0, 0, 97, 0, + 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 98, 0, + 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 99, 0, 0, 0,100, 0, 0, 0,100, 0, + 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,101, 0, + 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,102, 0, + 0, 0,102, 0, 0, 0,104, 0, 0, 0,105, 0, 0, 0,107, 0, 0, 0,109, 0, + 0, 0, 10, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 77, 0, 0, 0, 6, 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 77, + 0, 0, 0, 6, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 77, 0, 0, + 0, 3, 0, 0, 0,116,105, 0, 3, 0, 0, 0, 77, 0, 0, 0, 3, 0, 0, 0, +116,118, 0, 6, 0, 0, 0, 77, 0, 0, 0, 7, 0, 0, 0,111, 98,106,101, 99, +116, 0, 9, 0, 0, 0, 77, 0, 0, 0, 6, 0, 0, 0, 73, 78, 68, 69, 88, 0, + 27, 0, 0, 0, 75, 0, 0, 0, 3, 0, 0, 0, 99, 98, 0, 29, 0, 0, 0, 75, + 0, 0, 0, 5, 0, 0, 0,102,117,110, 99, 0, 32, 0, 0, 0, 45, 0, 0, 0, + 5, 0, 0, 0,110, 97,109,101, 0, 54, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0,122, 0, 0, 0,130, 0, 0, 0, 0, 1, 0, 6, 19, 0, 0, + 0, 69, 0, 0, 0,128, 0, 0, 0, 92,128, 0, 1, 90, 64, 0, 0, 22,192, 2, +128,133, 64, 0, 0,134,128, 64, 1,193,192, 0, 0, 5, 1, 1, 0, 64, 1, 0, + 0, 28, 1, 0, 1,156,128, 0, 0,197, 64, 1, 0, 0, 1, 0, 1, 64, 1, 0, + 0,220, 64,128, 1,158, 0, 0, 1, 94, 0, 0, 1, 30, 0,128, 0, 6, 0, 0, + 0, 4, 8, 0, 0, 0, 71,101,116, 78, 97,109,101, 0, 4, 7, 0, 0, 0,115, +116,114,105,110,103, 0, 4, 7, 0, 0, 0,102,111,114,109, 97,116, 0, 4, 17, + 0, 0, 0, 95, 73, 85, 80, 76, 85, 65, 95, 78, 65, 77, 69, 40, 37,115, 41, 0, + 4, 9, 0, 0, 0,116,111,115,116,114,105,110,103, 0, 4, 10, 0, 0, 0, 83, +101,116, 72, 97,110,100,108,101, 0, 0, 0, 0, 0, 19, 0, 0, 0,123, 0, 0, + 0,123, 0, 0, 0,123, 0, 0, 0,124, 0, 0, 0,124, 0, 0, 0,125, 0, 0, + 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, + 0,125, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, 0, + 0,127, 0, 0, 0,129, 0, 0, 0,130, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, + 0,118, 0, 0, 0, 0, 0, 18, 0, 0, 0, 5, 0, 0, 0,110, 97,109,101, 0, + 3, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 97,117,116,111,110, 97,109,101, + 0, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 0, 0, + 0,136, 0, 0, 0, 0, 1, 0, 4, 6, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, + 0,228, 0, 0, 0, 0, 0, 0, 0, 73,192, 0, 1, 30, 0,128, 0, 2, 0, 0, + 0, 4, 4, 0, 0, 0,105,117,112, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, + 1, 0, 0, 0, 0, 0, 0, 0,133, 0, 0, 0,135, 0, 0, 0, 1, 1, 0, 4, + 6, 0, 0, 0, 68, 0, 0, 0, 75, 0,192, 0,192, 0, 0, 0, 93, 0,128, 1, + 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 12, 0, 0, 0, 99,111,110, +115,116,114,117, 99,116,111,114, 0, 0, 0, 0, 0, 6, 0, 0, 0,134, 0, 0, + 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,135, 0, 0, + 0, 1, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 6, 0, 0, 0,133, 0, + 0, 0,133, 0, 0, 0,135, 0, 0, 0,135, 0, 0, 0,135, 0, 0, 0,136, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,138, 0, 0, 0,156, 0, 0, 0, 0, + 2, 0, 8, 31, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, 65, 0, 0,156, + 64,128, 1,133,128, 0, 0,192, 0, 0, 0,156,128, 0, 1,154, 64, 0, 0, 22, +192, 4,128,197,192, 0, 0, 5, 1, 1, 0, 6, 65, 65, 2, 64, 1,128, 0, 28, +129, 0, 1,198, 0,129, 1,218, 64, 0, 0, 22, 0, 0,128,197,128, 1, 0, 10, +129, 0, 0, 9,193,128,131, 9, 1, 0,132, 69, 1, 0, 0,128, 1, 0, 2,193, + 65, 2, 0, 92, 65,128, 1, 69,129, 2, 0,128, 1, 0, 0,192, 1, 0, 2, 92, + 65,128, 1, 30, 0, 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 12, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, + 32,104, 97,110,100,108,101, 0, 4, 13, 0, 0, 0,105,117,112, 71,101,116, 87, +105,100,103,101,116, 0, 4, 4, 0, 0, 0,105,117,112, 0, 4, 7, 0, 0, 0, +115,116,114,105,110,103, 0, 4, 6, 0, 0, 0,117,112,112,101,114, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 7, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0,105,117,112, 83,101, +116, 87,105,100,103,101,116, 0, 0, 0, 0, 0, 31, 0, 0, 0,140, 0, 0, 0, +140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,142, 0, 0, 0,142, 0, 0, 0, +142, 0, 0, 0,143, 0, 0, 0,143, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0, +145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,146, 0, 0, 0, +146, 0, 0, 0,147, 0, 0, 0,150, 0, 0, 0,150, 0, 0, 0,150, 0, 0, 0, +151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,152, 0, 0, 0, +152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,155, 0, 0, 0,156, 0, 0, 0, + 5, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 30, + 0, 0, 0, 9, 0, 0, 0,116,121,112,101,110, 97,109,101, 0, 0, 0, 0, 0, + 30, 0, 0, 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 7, 0, 0, 0, 30, + 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 15, 0, 0, 0, 29, 0, 0, + 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 21, 0, 0, 0, 29, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,166, 0, 0, 0,168, 0, 0, 0, 0, 1, 0, 3, + 4, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, 92, 64, 0, 1, 30, 0,128, 0, + 2, 0, 0, 0, 4, 5, 0, 0, 0, 83,104,111,119, 0, 4, 7, 0, 0, 0,104, + 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0,167, 0, 0, 0,167, 0, + 0, 0,167, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0,111, 98, +106,101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,170, 0, 0, 0,172, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, + 0,134, 64, 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, + 0, 0, 72,105,100,101, 0, 4, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0,172, + 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 0, 0, 0,176, 0, + 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, 92, 64, + 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 77, 97,112, 0, 4, + 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0,175, + 0, 0, 0,175, 0, 0, 0,175, 0, 0, 0,176, 0, 0, 0, 1, 0, 0, 0, 7, + 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,178, 0, 0, 0,189, 0, 0, 0, 0, 2, 0, 7, 23, 0, + 0, 0,139, 0, 64, 0, 0, 1,128, 0,156,128,128, 1,202,128, 0, 0,201, 0, +128,128,201,128, 0,129, 5,193, 0, 0, 64, 1, 0, 1,129, 1, 1, 0, 28, 65, +128, 1, 5,193, 0, 0, 64, 1,128, 1,129, 65, 1, 0, 28, 65,128, 1, 5,129, + 1, 0, 64, 1, 0, 1,128, 1,128, 1, 28, 65,128, 1, 11,193,193, 1,128, 1, +128, 0, 28, 65,128, 1,158, 0, 0, 1, 30, 0,128, 0, 8, 0, 0, 0, 4, 14, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 7, 0, + 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0,104, 97,110,100,108,101, + 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0,105,117,112, 83,101, +116, 87,105,100,103,101,116, 0, 4, 14, 0, 0, 0,115,101,116, 65,116,116,114, +105, 98,117,116,101,115, 0, 0, 0, 0, 0, 23, 0, 0, 0,179, 0, 0, 0,179, + 0, 0, 0,179, 0, 0, 0,180, 0, 0, 0,181, 0, 0, 0,182, 0, 0, 0,184, + 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,185, 0, 0, 0,185, + 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,186, + 0, 0, 0,186, 0, 0, 0,187, 0, 0, 0,187, 0, 0, 0,187, 0, 0, 0,188, + 0, 0, 0,189, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 3, 0, 0, 0, + 22, 0, 0, 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 6, 0, 0, 0, 22, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,191, 0, 0, 0,203, 0, 0, 0, 0, + 2, 0, 12, 25, 0, 0, 0,134, 0, 64, 0,197, 64, 0, 0, 0, 1,128, 0,220, + 0, 1, 1, 22, 0, 4,128, 5,130, 0, 0, 64, 2, 0, 3, 28,130, 0, 1, 23, +192, 64, 4, 22,128, 2,128, 5, 2, 1, 0, 64, 2,128, 3, 28,130, 0, 1, 23, + 64, 65, 4, 22, 64, 1,128, 5,130, 1, 0, 64, 2, 0, 0,128, 2, 0, 3,192, + 2,128, 3, 28, 66, 0, 2, 22, 0, 0,128,137,192, 1, 3,225,128, 0, 0, 22, + 0,251,127, 30, 0,128, 0, 7, 0, 0, 0, 4, 7, 0, 0, 0,104, 97,110,100, +108,101, 0, 4, 6, 0, 0, 0,112, 97,105,114,115, 0, 4, 5, 0, 0, 0,116, +121,112,101, 0, 4, 7, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 12, 0, 0, + 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117, +112, 32,104, 97,110,100,108,101, 0, 4, 7, 0, 0, 0,114, 97,119,115,101,116, + 0, 0, 0, 0, 0, 25, 0, 0, 0,192, 0, 0, 0,193, 0, 0, 0,193, 0, 0, + 0,193, 0, 0, 0,193, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, + 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, + 0,194, 0, 0, 0,194, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, + 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,200, 0, 0, 0,193, 0, 0, + 0,201, 0, 0, 0,203, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0,111, 98,106, +101, 99,116, 0, 0, 0, 0, 0, 24, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 1, + 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 40,102,111,114, 32,103,101,110,101, +114, 97,116,111,114, 41, 0, 4, 0, 0, 0, 24, 0, 0, 0, 12, 0, 0, 0, 40, +102,111,114, 32,115,116, 97,116,101, 41, 0, 4, 0, 0, 0, 24, 0, 0, 0, 14, + 0, 0, 0, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, 0, 4, 0, 0, + 0, 24, 0, 0, 0, 2, 0, 0, 0,105, 0, 5, 0, 0, 0, 22, 0, 0, 0, 2, + 0, 0, 0,118, 0, 5, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,218, 0, 0, 0,227, 0, 0, 0, 0, 2, 0, 11, 25, 0, 0, 0,133, 0, 0, + 0,192, 0, 0, 0, 1, 65, 0, 0,156,128,128, 1,212, 0,128, 0, 1,129, 0, + 0, 64, 1,128, 1,129,129, 0, 0, 32, 1, 2,128, 5,194, 0, 0, 70,194,129, + 0, 28,130, 0, 1, 23, 0, 65, 4, 22,192, 0,128, 5, 66, 1, 0, 64, 2, 0, + 1,134,194,129, 0, 28, 66,128, 1, 31, 65,253,127, 5,129, 1, 0, 6,193, 65, + 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, 1, 30, 0,128, 0, 8, 0, 0, + 0, 4, 7, 0, 0, 0,114, 97,119,103,101,116, 0, 4, 7, 0, 0, 0,104, 97, +110,100,108,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 12, 0, 0, 0,105, +117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32, +104, 97,110,100,108,101, 0, 4, 7, 0, 0, 0, 65,112,112,101,110,100, 0, 4, + 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 14, 0, 0, 0,115,101,116, 65, +116,116,114,105, 98,117,116,101,115, 0, 0, 0, 0, 0, 25, 0, 0, 0,219, 0, + 0, 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,220, 0, 0, 0,221, 0, + 0, 0,221, 0, 0, 0,221, 0, 0, 0,221, 0, 0, 0,222, 0, 0, 0,222, 0, + 0, 0,222, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,223, 0, 0, 0,223, 0, + 0, 0,223, 0, 0, 0,223, 0, 0, 0,221, 0, 0, 0,226, 0, 0, 0,226, 0, + 0, 0,226, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,227, 0, 0, 0, 8, 0, + 0, 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 24, 0, 0, + 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 24, 0, 0, 0, 7, 0, 0, + 0,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, +110, 0, 5, 0, 0, 0, 24, 0, 0, 0, 12, 0, 0, 0, 40,102,111,114, 32,105, +110,100,101,120, 41, 0, 8, 0, 0, 0, 19, 0, 0, 0, 12, 0, 0, 0, 40,102, +111,114, 32,108,105,109,105,116, 41, 0, 8, 0, 0, 0, 19, 0, 0, 0, 11, 0, + 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 8, 0, 0, 0, 19, 0, 0, + 0, 2, 0, 0, 0,105, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0,238, 0, 0, 0,252, 0, 0, 0, 0, 2, 0, 10, 52, 0, 0, 0,128, + 0, 0, 0,219, 64,128, 0, 22, 0, 0,128,193, 0, 0, 0, 21,192, 0, 1,133, + 64, 0, 0,154, 0, 0, 0, 22,128, 0,128,133, 64, 0, 0,137, 0, 0,129, 22, +192, 9,128,133,192, 0, 0,202,192, 0, 0,201, 64, 65,130,201,192, 65,131,201, + 64, 66,132,156,128, 0, 1,197,128, 2, 0, 10, 1, 1, 0, 9, 1,195,133, 9, + 1,195,134, 9, 1, 0,129, 9,129, 67,131,220,128, 0, 1, 5,193, 3, 0, 74, +193, 0, 1,128, 1,128, 1,192, 1, 0, 1, 73, 65, 68,136, 73,193, 68,137, 73, + 65, 69,138, 98, 65, 0, 1, 28,129, 0, 1, 69,129, 5, 0,138, 1,129, 0,192, + 1, 0, 2,137,193, 69,130,137,129, 0,140,137,129,128,140,137,129, 0,141,162, + 65,128, 0, 92,129, 0, 1,199, 64, 0, 0,139,193,198, 2, 5, 2, 7, 0, 69, + 2, 7, 0,156, 65, 0, 2,139, 65,199, 2,156, 65, 0, 1,131, 1, 0, 3,135, + 65, 0, 0, 30, 0,128, 0, 30, 0, 0, 0, 4, 1, 0, 0, 0, 0, 4, 20, 0, + 0, 0,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112,117, +112, 0, 4, 6, 0, 0, 0,118, 97,108,117,101, 0, 4, 7, 0, 0, 0, 98,117, +116,116,111,110, 0, 4, 6, 0, 0, 0,116,105,116,108,101, 0, 4, 3, 0, 0, + 0, 79,107, 0, 4, 5, 0, 0, 0,115,105,122,101, 0, 4, 3, 0, 0, 0, 54, + 48, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 44, 0, 0, 0,101, +114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112,117,112, 32, 61, + 32,110,105,108, 59, 32,114,101,116,117,114,110, 32,105,117,112, 46, 67, 76, 79, + 83, 69, 0, 4, 10, 0, 0, 0,109,117,108,116,105,108,105,110,101, 0, 4, 7, + 0, 0, 0,101,120,112, 97,110,100, 0, 4, 4, 0, 0, 0, 89, 69, 83, 0, 4, + 9, 0, 0, 0,114,101, 97,100,111,110,108,121, 0, 4, 8, 0, 0, 0, 51, 48, + 48,120, 49, 53, 48, 0, 4, 5, 0, 0, 0,118, 98,111,120, 0, 4, 10, 0, 0, + 0, 97,108,105,103,110,109,101,110,116, 0, 4, 8, 0, 0, 0, 65, 67, 69, 78, + 84, 69, 82, 0, 4, 7, 0, 0, 0,109, 97,114,103,105,110, 0, 4, 6, 0, 0, + 0, 49, 48,120, 49, 48, 0, 4, 4, 0, 0, 0,103, 97,112, 0, 4, 3, 0, 0, + 0, 49, 48, 0, 4, 7, 0, 0, 0,100,105, 97,108,111,103, 0, 4, 14, 0, 0, + 0, 69,114,114,111,114, 32, 77,101,115,115, 97,103,101, 0, 4, 11, 0, 0, 0, +100,101,102, 97,117,108,116,101,115, 99, 0, 4, 13, 0, 0, 0,100,101,102, 97, +117,108,116,101,110,116,101,114, 0, 4, 11, 0, 0, 0,115,116, 97,114,116,102, +111, 99,117,115, 0, 4, 6, 0, 0, 0,112,111,112,117,112, 0, 4, 7, 0, 0, + 0, 67, 69, 78, 84, 69, 82, 0, 4, 8, 0, 0, 0,100,101,115,116,114,111,121, + 0, 0, 0, 0, 0, 52, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, + 0,239, 0, 0, 0,239, 0, 0, 0,240, 0, 0, 0,240, 0, 0, 0,240, 0, 0, + 0,241, 0, 0, 0,241, 0, 0, 0,241, 0, 0, 0,243, 0, 0, 0,243, 0, 0, + 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,244, 0, 0, + 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, + 0,244, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, + 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, + 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, + 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,247, 0, 0, + 0,248, 0, 0, 0,248, 0, 0, 0,248, 0, 0, 0,248, 0, 0, 0,249, 0, 0, + 0,249, 0, 0, 0,250, 0, 0, 0,250, 0, 0, 0,252, 0, 0, 0, 6, 0, 0, + 0, 4, 0, 0, 0,101,114,114, 0, 0, 0, 0, 0, 51, 0, 0, 0, 10, 0, 0, + 0,116,114, 97, 99,101, 98, 97, 99,107, 0, 0, 0, 0, 0, 51, 0, 0, 0, 3, + 0, 0, 0, 98,116, 0, 17, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, 0,109,108, + 0, 24, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, 0,118, 98, 0, 33, 0, 0, 0, + 51, 0, 0, 0, 3, 0, 0, 0,100,103, 0, 42, 0, 0, 0, 51, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0,254, 0, 0, 0,254, 0, 0, 0, 0, 0, 7, 2, 2, + 0, 0, 0, 30, 0, 0, 1, 30, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 0, 0, 0,254, 0, 0, 0,254, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 13, 1, 0, 0, 0, 2, 0, 6, 29, 0, 0, 0, 26, 64, 0, 0, 22, +192, 0,128,133, 0, 0, 0,192, 0,128, 0,156, 64, 0, 1, 30, 0,128, 0,133, + 64, 0, 0,197,128, 0, 0, 0, 1, 0, 0,220, 0, 0, 1,156,128, 0, 0,198, +192, 64, 1,218, 64, 0, 0, 22, 0, 1,128,197, 0, 0, 0, 6, 1, 65, 1,220, + 64, 0, 1, 30, 0,128, 0, 22, 0, 2,128,197, 64, 1, 0,198,128,193, 1, 0, + 1, 0, 1, 65,193, 0, 0,220, 64,128, 1,197,192, 1, 0, 0, 1, 0, 1,221, + 0, 0, 1,222, 0, 0, 0, 30, 0,128, 0, 8, 0, 0, 0, 4, 14, 0, 0, 0, + 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, 69, 0, 4, 5, 0, 0, 0,112, + 97, 99,107, 0, 4, 6, 0, 0, 0,112, 99, 97,108,108, 0, 3, 0, 0, 0, 0, + 0, 0,240, 63, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, 6, 0, 0, 0,116, 97, + 98,108,101, 0, 4, 7, 0, 0, 0,114,101,109,111,118,101, 0, 4, 7, 0, 0, + 0,117,110,112, 97, 99,107, 0, 0, 0, 0, 0, 29, 0, 0, 0, 1, 1, 0, 0, + 1, 1, 0, 0, 2, 1, 0, 0, 2, 1, 0, 0, 2, 1, 0, 0, 3, 1, 0, 0, + 5, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, + 6, 1, 0, 0, 6, 1, 0, 0, 6, 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, + 7, 1, 0, 0, 8, 1, 0, 0, 8, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, + 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, + 11, 1, 0, 0, 11, 1, 0, 0, 13, 1, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, +102, 0, 0, 0, 0, 0, 28, 0, 0, 0, 4, 0, 0, 0,101,114,114, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 4, 0, 0, 0,114,101,116, 0, 11, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 0, 1, + 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, 64, 0, 0,192, 0, 0, 0,156, 0, + 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 15, + 0, 0, 0,112,114,111,116,101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 11, + 0, 0, 0,108,111, 97,100,115,116,114,105,110,103, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, + 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0,115, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 1, 0, 0, + 16, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, 64, 0, 0, +192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 15, 0, 0, 0,112,114,111,116,101, 99,116,101,100, 99, 97, +108,108, 95, 0, 4, 9, 0, 0, 0,108,111, 97,100,102,105,108,101, 0, 0, 0, + 0, 0, 7, 0, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, + 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 1, 0, 0, 0, 2, 0, + 0, 0,102, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 18, 1, 0, 0, 20, 1, 0, 0, 0, 3, 0, 8, 9, 0, 0, 0,197, 0, 0, 0, +198, 64,192, 1, 1,129, 0, 0, 78, 1,128,129,142, 65,128,129,206,129,128,129, +221, 0,128, 2,222, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, 7, 0, 0, + 0,115,116,114,105,110,103, 0, 4, 7, 0, 0, 0,102,111,114,109, 97,116, 0, + 4, 9, 0, 0, 0, 37,100, 32, 37,100, 32, 37,100, 0, 3, 0, 0, 0, 0, 0, +224,111, 64, 0, 0, 0, 0, 9, 0, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, + 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, + 1, 0, 0, 20, 1, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0,114, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 2, 0, 0, 0,103, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, + 0, 0, 0, 98, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0,114, 0, 0, + 0, 7, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 9, 0, 0, 0, 37, 0, 0, + 0, 29, 0, 0, 0, 53, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, + 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, + 0, 79, 0, 0, 0,109, 0, 0, 0,111, 0, 0, 0,111, 0, 0, 0,111, 0, 0, + 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, + 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, + 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, + 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, + 0,130, 0, 0, 0,122, 0, 0, 0,136, 0, 0, 0,132, 0, 0, 0,156, 0, 0, + 0,138, 0, 0, 0,162, 0, 0, 0,163, 0, 0, 0,163, 0, 0, 0,164, 0, 0, + 0,166, 0, 0, 0,168, 0, 0, 0,166, 0, 0, 0,170, 0, 0, 0,172, 0, 0, + 0,170, 0, 0, 0,174, 0, 0, 0,176, 0, 0, 0,174, 0, 0, 0,178, 0, 0, + 0,189, 0, 0, 0,178, 0, 0, 0,191, 0, 0, 0,203, 0, 0, 0,191, 0, 0, + 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,214, 0, 0, + 0,215, 0, 0, 0,215, 0, 0, 0,216, 0, 0, 0,218, 0, 0, 0,227, 0, 0, + 0,218, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0,229, 0, 0, + 0,236, 0, 0, 0,236, 0, 0, 0,252, 0, 0, 0,238, 0, 0, 0,254, 0, 0, + 0,254, 0, 0, 0, 13, 1, 0, 0, 0, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, + 0, 16, 1, 0, 0, 16, 1, 0, 0, 20, 1, 0, 0, 18, 1, 0, 0, 24, 1, 0, + 0, 24, 1, 0, 0, 24, 1, 0, 0, 24, 1, 0, 0, 25, 1, 0, 0, 25, 1, 0, + 0, 25, 1, 0, 0, 25, 1, 0, 0, 25, 1, 0, 0, 26, 1, 0, 0, 26, 1, 0, + 0, 26, 1, 0, 0, 26, 1, 0, 0, 26, 1, 0, 0, 27, 1, 0, 0, 27, 1, 0, + 0, 27, 1, 0, 0, 28, 1, 0, 0, 28, 1, 0, 0, 29, 1, 0, 0, 3, 0, 0, + 0, 16, 0, 0, 0,119,105,100,103,101,116, 95,103,101,116,116, 97, 98,108,101, + 0, 7, 0, 0, 0,113, 0, 0, 0, 17, 0, 0, 0,105,104, 97,110,100,108,101, + 95,103,101,116,116, 97, 98,108,101, 0, 16, 0, 0, 0,113, 0, 0, 0, 17, 0, + 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,116, 97, 98,108,101, 0, 17, + 0, 0, 0,113, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/iuplua.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/iuplua_be32.loh b/iup/srclua5/loh/iuplua_be32.loh new file mode 100755 index 0000000..07dc238 --- /dev/null +++ b/iup/srclua5/loh/iuplua_be32.loh @@ -0,0 +1,489 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/iuplua_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/iuplua_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 12, 64,105,117,112, +108,117, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, + 0, 0, 0,114, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 36, 0, 0, 64, 7, + 0, 0, 64, 36, 0, 0,128, 7, 0, 0,128, 36, 0, 0,192, 69, 0, 1, 0,129, + 1, 0, 64, 92, 0, 1, 64, 69, 0, 1, 0,129, 0, 1,128,193, 0, 0, 1, 0, + 2, 0, 64, 92, 0, 0,192,100, 0, 1, 0,164, 0, 0,192,197, 0, 1,193, 1, + 1, 0, 64,220, 0, 1, 64,197, 0, 1,193, 1, 0, 1,129, 65, 0,128, 1,128, + 2, 0, 64,220, 0, 1, 64,197, 0, 1,193, 1, 0, 2, 1, 65, 1, 0, 1,128, + 2, 0, 64,220, 0, 1, 64,197, 0, 1,193, 1, 0, 2, 65, 65, 0, 2,129,133, + 2, 0, 64,220, 0, 1, 64,197, 0, 1,193, 1, 0, 2,193, 65, 0, 3, 1,133, + 2, 0, 64,220, 0, 1, 64,228, 0, 3, 64,199, 0, 1,128,228, 0, 3,128,199, + 0, 1,192,228, 0, 3,192,199, 0, 0, 64,202, 0, 0, 1, 10,136,129, 0,201, + 0, 4, 0,199, 0, 4, 0,197, 0, 2, 1, 36,137, 1, 0,201, 0, 4, 0,197, + 0, 2, 65, 36,137,129, 0,201, 0, 4, 0,197, 0, 2,129, 36,138, 1, 0,201, + 0, 4, 0,197, 0, 2,193, 36,138,129, 0,201, 0, 4, 0,197, 0, 3, 1, 36, +139, 1, 0,201, 0, 5,192,197, 0, 4, 1, 5, 0, 1, 1, 65, 1,128, 64,220, + 0, 0, 64,202, 0, 4, 1, 5,140,129, 0,201, 0, 6, 0,199, 0, 6, 0,197, + 0, 3, 65, 36,139, 1, 0,201, 0, 5,192,197, 0, 6, 1, 5, 0, 1, 1, 65, + 1,128, 64,220, 1,128, 0,195, 0, 6,128,199, 0, 3,128,228, 0, 6,192,199, + 0, 3,192,228, 0, 7, 0,199, 0, 4, 0,228, 0, 7, 64,199, 0, 4, 64,228, + 0, 7,128,199, 0, 4,128,228, 0, 7,192,199, 0, 4,192,228, 0, 8, 0,199, + 0, 8, 64,197, 1,200,128,198, 0, 0, 0,218,128, 3,128, 22, 0, 8, 64,197, + 1,200,128,198, 1,200,192,198, 0, 9, 65, 5,146, 1, 0,201, 0, 8, 64,197, + 1,200,128,198, 1,200,192,198, 0, 9, 65, 5,147, 1, 0,201, 0, 9, 64,197, + 0, 9, 65, 5,147,129, 0,201, 0, 9, 64,197,148, 73, 0,201, 0,128, 0, 30, + 0, 0, 0, 41, 4, 0, 0, 0, 10, 99, 97,108,108, 98, 97, 99,107,115, 0, 4, + 0, 0, 0, 14,105,117,112, 67, 97,108,108, 77,101,116,104,111,100, 0, 4, 0, + 0, 0, 17, 82,101,103,105,115,116,101,114, 67, 97,108,108, 98, 97, 99,107, 0, + 4, 0, 0, 0, 12,105,117,112, 78,101,119, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 4, 0, 0, 0, 13,105,117, +112, 83,101,116, 77,101,116,104,111,100, 0, 4, 0, 0, 0, 8, 95, 95,105,110, +100,101,120, 0, 4, 0, 0, 0, 11,105,117,112, 32,104, 97,110,100,108,101, 0, + 4, 0, 0, 0, 11, 95, 95,110,101,119,105,110,100,101,120, 0, 4, 0, 0, 0, + 11, 95, 95,116,111,115,116,114,105,110,103, 0, 4, 0, 0, 0, 17,105,104, 97, +110,100,108,101, 95,116,111,115,116,114,105,110,103, 0, 4, 0, 0, 0, 5, 95, + 95,101,113, 0, 4, 0, 0, 0, 16,105,104, 97,110,100,108,101, 95, 99,111,109, +112, 97,114,101, 0, 4, 0, 0, 0, 16,105,104, 97,110,100,108,101, 95,115,101, +116,110, 97,109,101, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 15, 82,101,103,105,115,116, +101,114, 72, 97,110,100,108,101, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, + 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 5, +115,104,111,119, 0, 4, 0, 0, 0, 5,104,105,100,101, 0, 4, 0, 0, 0, 4, +109, 97,112, 0, 4, 0, 0, 0, 12, 99,111,110,115,116,114,117, 99,116,111,114, + 0, 4, 0, 0, 0, 14,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, + 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 4, 66, 79, 88, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 20,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112, +117,112, 0, 4, 0, 0, 0, 14, 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, + 69, 0, 4, 0, 0, 0, 5,112, 97, 99,107, 0, 4, 0, 0, 0, 15,112,114,111, +116,101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 0, 0, 0, 9,100,111,115, +116,114,105,110,103, 0, 4, 0, 0, 0, 7,100,111,102,105,108,101, 0, 4, 0, + 0, 0, 4, 82, 71, 66, 0, 4, 0, 0, 0, 3, 95, 71, 0, 4, 0, 0, 0, 8, +112, 97, 99,107, 97,103,101, 0, 4, 0, 0, 0, 7,108,111, 97,100,101,100, 0, + 4, 0, 0, 0, 7,105,117,112,108,117, 97, 0, 4, 0, 0, 0, 4,105,117,112, + 0, 4, 0, 0, 0, 9,105,117,112,108,117, 97, 53, 49, 0, 4, 0, 0, 0, 3, + 95, 77, 0, 4, 0, 0, 0, 9, 95, 80, 65, 67, 75, 65, 71, 69, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 27, 0, 1, 7, 7, 0, 0, 0, + 35, 0,192, 0,134, 1, 0, 0,198, 0, 0, 64,218,128, 0, 0, 22, 0,128, 0, + 30, 0, 0, 65, 5, 1,128, 1, 64, 1, 0,129, 28, 2, 64,128, 23,128, 1,128, + 22, 1,128, 1, 0, 0, 0,193, 69, 0,128, 1,128, 1, 0, 1, 92, 0, 0, 1, + 29, 0, 0, 1, 30,128, 4, 0, 22, 0, 0, 65, 5, 1,128, 1, 64, 1, 0,129, + 28, 2, 65, 0, 23,128, 2, 0, 22, 0, 1, 65, 5, 0, 1, 64,135, 0, 1,129, + 69, 2,193,193, 70, 1,128, 1,128, 1, 0,129, 92, 0, 1, 65, 7, 1, 0, 1, + 94,128, 0,128, 22, 0, 1,129, 5, 2, 66, 1, 6, 1, 0, 1, 30, 0,128, 0, + 30, 0, 0, 0, 9, 3, 63,240, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5,116, +121,112,101, 0, 4, 0, 0, 0, 9,102,117,110, 99,116,105,111,110, 0, 4, 0, + 0, 0, 7,117,110,112, 97, 99,107, 0, 4, 0, 0, 0, 7,115,116,114,105,110, +103, 0, 4, 0, 0, 0, 5,115,101,108,102, 0, 4, 0, 0, 0, 4,105,117,112, + 0, 4, 0, 0, 0, 9,100,111,115,116,114,105,110,103, 0, 4, 0, 0, 0, 6, + 69, 82, 82, 79, 82, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 16, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, + 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 27, 0, 0, 0, 6, 0, 0, + 0, 5,110, 97,109,101, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 4, 97, +114,103, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 7,104, 97,110,100,108, +101, 0, 0, 0, 0, 1, 0, 0, 0, 34, 0, 0, 0, 5,102,117,110, 99, 0, 0, + 0, 0, 2, 0, 0, 0, 34, 0, 0, 0, 5,116,101,109,112, 0, 0, 0, 0, 23, + 0, 0, 0, 30, 0, 0, 0, 7,114,101,115,117,108,116, 0, 0, 0, 0, 28, 0, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 0, + 3, 0, 5, 0, 0, 0, 15, 0, 0, 0,197, 1,128, 0,198, 0, 0, 64,218,128, + 0,128, 22, 0, 0, 0,197, 0, 0, 1, 10, 0, 1, 0,201, 0, 0, 0,197, 1, +128, 0,198, 0, 0, 0,154,128, 0, 64, 22, 1, 0, 64,201,128, 0, 0, 22,128, +128, 64,201, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 10, 99, 97,108,108, + 98, 97, 99,107,115, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, + 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 35, 0, + 0, 0, 37, 0, 0, 0, 4, 0, 0, 0, 5,110, 97,109,101, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 5,102,117,110, 99, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 5,116,121,112,101, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, + 0, 3, 99, 98, 0, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 44, 0, 0, 0, 53, 0, 2, 0, 7, 0, 0, 0, 21, 0, 0, 0, +128, 1,128, 0,195, 0, 0, 1, 5, 1, 0, 1, 64, 0,128, 1,128, 1,128,129, + 28, 2, 0, 0,192, 0, 0, 0,218,128, 0, 0, 22, 1, 0, 0,222, 0, 0, 1, + 5, 1, 0, 1, 64, 0, 0, 65,129, 1,128,129, 28, 2, 0, 0,128, 0, 0, 64, +154,127,252, 0, 22, 2, 0, 1, 3, 1, 0, 1, 30,127,251, 64, 22, 0,128, 0, + 30, 0, 0, 0, 2, 4, 0, 0, 0, 7,114, 97,119,103,101,116, 0, 4, 0, 0, + 0, 7,112, 97,114,101,110,116, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, + 45, 0, 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, + 48, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, + 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, + 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, + 53, 0, 0, 0, 4, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 0, 6,105,110,100,101,120, 0, 0, 0, 0, 0, 0, 0, + 0, 20, 0, 0, 0, 2,112, 0, 0, 0, 0, 1, 0, 0, 0, 20, 0, 0, 0, 2, +118, 0, 0, 0, 0, 2, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 59, 0, 0, 0, 79, 0, 2, 0, 7, 0, 0, 0, 67, 0, 0, 0,133, 1, 64, + 64,134, 0,128, 0,192, 1, 0,128,156, 0, 0,128,197, 1,128,128,198, 0, 0, + 0,218,128, 3,192, 22, 0, 0,192,197, 0, 0, 1, 0, 1, 0,128,220, 0, 0, + 0,218,128, 1, 0, 22, 0, 1, 1, 5, 1,128, 1, 64, 1, 0,129, 28, 2, 65, + 64, 87,128, 0,128, 22, 0, 1,129, 5, 0, 1,193, 65, 1, 0, 65, 28, 1,128, + 65, 6, 1, 0, 1, 30,128, 10, 64, 22, 0, 2, 0,197, 0, 0, 1, 0, 1, 0, + 1, 64, 1,128,128,220, 0, 0, 64,218,128, 3,192, 22, 0, 0,193, 5, 0, 0, + 1, 64, 1, 0,129, 28, 0, 0, 1, 26,128, 1, 0, 22, 0, 1, 1, 69, 2, 0, + 1,128, 1, 0,129, 92, 2,193, 64, 87,128, 0,128, 22, 0, 1,129, 69, 0, 1, +193,129, 1, 0, 65, 92, 2, 0, 65, 70, 1, 0, 1, 94,128, 4,192, 22, 0, 1, + 1, 5, 1,128, 1, 64, 1, 0,129, 28, 2, 66, 64, 87,128, 1, 0, 22, 0, 1, + 1, 5, 1,128, 1, 64, 1, 0,129, 28, 2, 64, 0, 23,128, 2, 0, 22, 0, 2, +129, 5, 1,128, 1, 64, 1, 0,129, 28, 0, 0, 1, 26,128, 0, 64, 22, 1, 0, + 1, 30,128, 0,128, 22, 1, 0, 0,222,128, 0, 0, 22, 1, 0, 0,222, 0,128, + 0, 30, 0, 0, 0, 11, 4, 0, 0, 0, 7,115,116,114,105,110,103, 0, 4, 0, + 0, 0, 6,117,112,112,101,114, 0, 4, 0, 0, 0, 10, 99, 97,108,108, 98, 97, + 99,107,115, 0, 4, 0, 0, 0, 13,105,117,112, 71,101,116, 87,105,100,103,101, +116, 0, 4, 0, 0, 0, 5,116,121,112,101, 0, 4, 0, 0, 0, 6,116, 97, 98, +108,101, 0, 4, 0, 0, 0, 6,101,114,114,111,114, 0, 4, 0, 0, 0, 19,105, +110,118, 97,108,105,100, 32,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 0, + 0, 0, 13, 71,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 0, 0, 0, + 7,110,117,109, 98,101,114, 0, 4, 0, 0, 0, 10, 71,101,116, 72, 97,110,100, +108,101, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 60, 0, 0, 0, 60, 0, + 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, + 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 63, 0, + 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, + 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 64, 0, + 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, + 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 68, 0, 0, 0, 68, 0, + 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, + 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, + 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 71, 0, + 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, + 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 72, 0, + 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 73, 0, + 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 74, 0, 0, 0, 76, 0, 0, 0, 79, 0, + 0, 0, 7, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, + 0, 66, 0, 0, 0, 6,105,110,100,101,120, 0, 0, 0, 0, 0, 0, 0, 0, 66, + 0, 0, 0, 6, 73, 78, 68, 69, 88, 0, 0, 0, 0, 4, 0, 0, 0, 66, 0, 0, + 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, 11, 0, 0, 0, 23, 0, 0, 0, + 6,118, 97,108,117,101, 0, 0, 0, 0, 28, 0, 0, 0, 66, 0, 0, 0, 7,111, + 98,106,101, 99,116, 0, 0, 0, 0, 33, 0, 0, 0, 45, 0, 0, 0, 3,105,104, + 0, 0, 0, 0, 59, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 81, 0, 0, 0,109, 0, 3, 0, 14, 0, 0, 0, 78, 0, 0, 0,197, 0,128, 1, + 0, 1, 0,128,220, 0, 0, 1, 5, 1, 0, 1, 64, 1, 0,129, 28, 0, 0, 65, + 69, 0, 0, 1,128, 1, 0,129, 92, 0, 0, 1, 90,128, 1, 0, 22, 0, 0, 1, +133, 2,128, 1,192, 1, 0,129,156, 3, 64,128, 87,128, 0,128, 22, 0, 0,193, +133, 0, 1, 1,193, 1, 0, 65,156, 1,193, 64, 87,128, 0, 64, 22, 1,193,128, + 23,128, 13, 0, 22, 0, 1,129,133, 3, 65,193,134, 0,128, 1,192, 1, 0,129, +156, 0, 2, 1,197, 3,129,129,198, 0, 0, 1,218,128, 3,128, 22, 3,194, 66, + 6, 0, 0, 66, 26,128, 0,192, 22, 0, 2,130, 69, 0, 0, 2,128, 1, 0,130, + 92, 3,130, 66, 6, 0, 2,194, 69, 0, 0, 2,128, 3, 0, 2,192, 4, 0, 3, + 0, 1, 0, 3, 64, 2,128, 66, 92, 0,128,129, 73,128, 7,128, 22, 0, 3, 2, + 5, 1, 0, 2, 64, 1, 0,130, 28, 4, 67, 64, 23,128, 2, 64, 22, 0, 3,130, + 5, 1, 0, 2, 64, 1, 0,130, 28, 0, 3,194, 69, 0, 0, 2,128, 3, 0, 2, +192, 4, 0, 3, 0, 2, 0, 66, 92, 0,196, 1, 73,128, 3,192, 22, 2, 65,128, + 87,128, 0,192, 22, 2, 65, 64, 87,128, 0, 64, 22, 2, 68, 64, 23,128, 1,128, + 22, 0, 3,194, 5, 0, 0, 2, 64, 3, 0, 2,128, 1, 0, 2,192, 2, 0, 66, + 28, 0,196, 1, 73,128, 0,128, 22, 0,128,129, 73,128, 0, 0, 22, 0,128,129, + 73, 0,128, 0, 30, 0, 0, 0, 18, 4, 0, 0, 0, 5,116,121,112,101, 0, 4, + 0, 0, 0, 13,105,117,112, 71,101,116, 87,105,100,103,101,116, 0, 4, 0, 0, + 0, 6,116, 97, 98,108,101, 0, 4, 0, 0, 0, 6,101,114,114,111,114, 0, 4, + 0, 0, 0, 19,105,110,118, 97,108,105,100, 32,105,117,112, 32,104, 97,110,100, +108,101, 0, 4, 0, 0, 0, 7,110,117,109, 98,101,114, 0, 4, 0, 0, 0, 7, +115,116,114,105,110,103, 0, 4, 0, 0, 0, 6,117,112,112,101,114, 0, 4, 0, + 0, 0, 10, 99, 97,108,108, 98, 97, 99,107,115, 0, 3, 63,240, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 13, 71,101,116, 67,108, 97,115,115, 78, 97,109,101, 0, + 4, 0, 0, 0, 15,105,117,112, 83,101,116, 67, 97,108,108, 98, 97, 99,107, 0, + 4, 0, 0, 0, 12,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 11,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 16,105,104, + 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 0, 0, 0, 15, 83, +116,111,114,101, 65,116,116,114,105, 98,117,116,101, 0, 0, 4, 0, 0, 0, 4, +110,105,108, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 82, 0, 0, 0, 82, + 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 84, + 0, 0, 0, 84, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, + 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, + 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 86, 0, 0, 0, 86, + 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, + 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, 90, + 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 92, 0, 0, 0, 92, + 0, 0, 0, 92, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, + 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, 96, + 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 97, + 0, 0, 0, 97, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 98, + 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 99, 0, 0, 0,100, + 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, + 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, + 0, 0, 0,102, 0, 0, 0,102, 0, 0, 0,104, 0, 0, 0,105, 0, 0, 0,107, + 0, 0, 0,109, 0, 0, 0, 10, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6,105,110,100,101,120, 0, 0, 0, 0, + 0, 0, 0, 0, 77, 0, 0, 0, 6,118, 97,108,117,101, 0, 0, 0, 0, 0, 0, + 0, 0, 77, 0, 0, 0, 3,116,105, 0, 0, 0, 0, 3, 0, 0, 0, 77, 0, 0, + 0, 3,116,118, 0, 0, 0, 0, 6, 0, 0, 0, 77, 0, 0, 0, 7,111, 98,106, +101, 99,116, 0, 0, 0, 0, 9, 0, 0, 0, 77, 0, 0, 0, 6, 73, 78, 68, 69, + 88, 0, 0, 0, 0, 27, 0, 0, 0, 75, 0, 0, 0, 3, 99, 98, 0, 0, 0, 0, + 29, 0, 0, 0, 75, 0, 0, 0, 5,102,117,110, 99, 0, 0, 0, 0, 32, 0, 0, + 0, 45, 0, 0, 0, 5,110, 97,109,101, 0, 0, 0, 0, 54, 0, 0, 0, 60, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 0, 0, 0,130, 0, 1, 0, 6, 0, + 0, 0, 19, 0, 0, 0, 69, 0, 0, 0,128, 1, 0,128, 92, 0, 0, 64, 90,128, + 2,192, 22, 0, 0, 64,133, 1, 64,128,134, 0, 0,192,193, 0, 1, 1, 5, 0, + 0, 1, 64, 1, 0, 1, 28, 0, 0,128,156, 0, 1, 64,197, 1, 0, 1, 0, 0, + 0, 1, 64, 1,128, 64,220, 1, 0, 0,158, 1, 0, 0, 94, 0,128, 0, 30, 0, + 0, 0, 6, 4, 0, 0, 0, 8, 71,101,116, 78, 97,109,101, 0, 4, 0, 0, 0, + 7,115,116,114,105,110,103, 0, 4, 0, 0, 0, 7,102,111,114,109, 97,116, 0, + 4, 0, 0, 0, 17, 95, 73, 85, 80, 76, 85, 65, 95, 78, 65, 77, 69, 40, 37,115, + 41, 0, 4, 0, 0, 0, 9,116,111,115,116,114,105,110,103, 0, 4, 0, 0, 0, + 10, 83,101,116, 72, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, + 0, 0,123, 0, 0, 0,123, 0, 0, 0,123, 0, 0, 0,124, 0, 0, 0,124, 0, + 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, + 0, 0,125, 0, 0, 0,125, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, + 0, 0,126, 0, 0, 0,127, 0, 0, 0,129, 0, 0, 0,130, 0, 0, 0, 3, 0, + 0, 0, 2,118, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 5,110, 97,109, +101, 0, 0, 0, 0, 3, 0, 0, 0, 18, 0, 0, 0, 9, 97,117,116,111,110, 97, +109,101, 0, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0,132, 0, 0, 0,136, 0, 1, 0, 4, 0, 0, 0, 6, 0, 0, 0, 69, 0, + 64, 64,134, 0, 0, 0,228, 0, 0, 0, 0, 1, 0,192, 73, 0,128, 0, 30, 0, + 0, 0, 2, 4, 0, 0, 0, 4,105,117,112, 0, 4, 0, 0, 0, 5,110,105, 99, +107, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,133, 0, 0, 0,135, 1, 1, + 0, 4, 0, 0, 0, 6, 0, 0, 0, 68, 0,192, 0, 75, 0, 0, 0,192, 1,128, + 0, 93, 0, 0, 0, 94, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 12, 99, +111,110,115,116,114,117, 99,116,111,114, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, + 0, 0,135, 0, 0, 0, 1, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 6, + 0, 0, 0,133, 0, 0, 0,133, 0, 0, 0,135, 0, 0, 0,135, 0, 0, 0,135, + 0, 0, 0,136, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,138, 0, 0, 0, +156, 0, 2, 0, 8, 0, 0, 0, 31, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 65, + 1, 1,128, 64,156, 0, 0,128,133, 0, 0, 0,192, 1, 0,128,156, 0, 0, 64, +154,128, 4,192, 22, 0, 0,192,197, 0, 1, 1, 5, 2, 65, 65, 6, 0,128, 1, + 64, 1, 0,129, 28, 1,129, 0,198, 0, 0, 64,218,128, 0, 0, 22, 0, 1,128, +197, 0, 0,129, 10,131,128,193, 9,132, 0, 1, 9, 0, 0, 1, 69, 2, 0, 1, +128, 0, 2, 65,193, 1,128, 65, 92, 0, 2,129, 69, 0, 0, 1,128, 2, 0, 1, +192, 1,128, 65, 92, 1, 0, 0, 30, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, + 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105, +117,112, 32,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 13,105,117,112, 71,101, +116, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 4,105,117,112, 0, 4, 0, 0, + 0, 7,115,116,114,105,110,103, 0, 4, 0, 0, 0, 6,117,112,112,101,114, 0, + 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 7,112, 97,114, +101,110,116, 0, 4, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 4, 0, 0, 0, + 11,105,117,112, 32,119,105,100,103,101,116, 0, 4, 0, 0, 0, 13,105,117,112, + 83,101,116, 87,105,100,103,101,116, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, + 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,142, 0, 0, + 0,142, 0, 0, 0,142, 0, 0, 0,143, 0, 0, 0,143, 0, 0, 0,145, 0, 0, + 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, + 0,146, 0, 0, 0,146, 0, 0, 0,147, 0, 0, 0,150, 0, 0, 0,150, 0, 0, + 0,150, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, + 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,155, 0, 0, + 0,156, 0, 0, 0, 5, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 9,116,121,112,101,110, 97,109,101, 0, 0, 0, + 0, 0, 0, 0, 0, 30, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, + 7, 0, 0, 0, 30, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 15, 0, + 0, 0, 29, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, 21, 0, 0, + 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,166, 0, 0, 0,168, 0, 1, + 0, 3, 0, 0, 0, 4, 0, 0, 0, 69, 0, 64, 64,134, 1, 0, 64, 92, 0,128, + 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 5, 83,104,111,119, 0, 4, 0, 0, 0, + 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0,167, + 0, 0, 0,167, 0, 0, 0,167, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 7, +111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,170, 0, 0, 0,172, 0, 1, 0, 3, 0, 0, 0, 4, 0, + 0, 0, 69, 0, 64, 64,134, 1, 0, 64, 92, 0,128, 0, 30, 0, 0, 0, 2, 4, + 0, 0, 0, 5, 72,105,100,101, 0, 4, 0, 0, 0, 7,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0, +171, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, + 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, + 0, 0, 0,176, 0, 1, 0, 3, 0, 0, 0, 4, 0, 0, 0, 69, 0, 64, 64,134, + 1, 0, 64, 92, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 4, 77, 97,112, + 0, 4, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0,175, 0, 0, 0,175, 0, 0, 0,175, 0, 0, 0,176, 0, 0, 0, + 1, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,178, 0, 0, 0,189, 0, 2, 0, 7, + 0, 0, 0, 23, 0, 64, 0,139, 0,128, 1, 0, 1,128,128,156, 0, 0,128,202, +128,128, 0,201,129, 0,128,201, 0, 0,193, 5, 1, 0, 1, 64, 0, 1, 1,129, + 1,128, 65, 28, 0, 0,193, 5, 1,128, 1, 64, 0, 1, 65,129, 1,128, 65, 28, + 0, 1,129, 5, 1, 0, 1, 64, 1,128, 1,128, 1,128, 65, 28, 1,193,193, 11, + 0,128, 1,128, 1,128, 65, 28, 1, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 8, + 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7,104, 97,110,100, +108,101, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 0, 0, 0, 11,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 0, 0, 0, + 11,105,117,112, 32,119,105,100,103,101,116, 0, 4, 0, 0, 0, 13,105,117,112, + 83,101,116, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 14,115,101,116, 65,116, +116,114,105, 98,117,116,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, +179, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,180, 0, 0, 0,181, 0, 0, 0, +182, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0, +185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,186, 0, 0, 0, +186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,187, 0, 0, 0,187, 0, 0, 0, +187, 0, 0, 0,188, 0, 0, 0,189, 0, 0, 0, 4, 0, 0, 0, 6, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 97,114,103, 0, 0, + 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, + 0, 3, 0, 0, 0, 22, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, + 6, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,191, 0, 0, 0, +203, 0, 2, 0, 12, 0, 0, 0, 25, 0, 64, 0,134, 0, 0, 64,197, 0,128, 1, + 0, 1, 1, 0,220,128, 4, 0, 22, 0, 0,130, 5, 3, 0, 2, 64, 1, 0,130, + 28, 4, 64,192, 23,128, 2,128, 22, 0, 1, 2, 5, 3,128, 2, 64, 1, 0,130, + 28, 4, 65, 64, 23,128, 1, 64, 22, 0, 1,130, 5, 0, 0, 2, 64, 3, 0, 2, +128, 3,128, 2,192, 2, 0, 66, 28,128, 0, 0, 22, 3, 1,192,137, 0, 0,128, +225,127,251, 0, 22, 0,128, 0, 30, 0, 0, 0, 7, 4, 0, 0, 0, 7,104, 97, +110,100,108,101, 0, 4, 0, 0, 0, 6,112, 97,105,114,115, 0, 4, 0, 0, 0, + 5,116,121,112,101, 0, 4, 0, 0, 0, 7,110,117,109, 98,101,114, 0, 4, 0, + 0, 0, 12,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11, +105,117,112, 32,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 7,114, 97,119,115, +101,116, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0,192, 0, 0, 0,193, 0, + 0, 0,193, 0, 0, 0,193, 0, 0, 0,193, 0, 0, 0,194, 0, 0, 0,194, 0, + 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, + 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,197, 0, 0, 0,197, 0, + 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,200, 0, + 0, 0,193, 0, 0, 0,201, 0, 0, 0,203, 0, 0, 0, 8, 0, 0, 0, 7,111, + 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 4, 97,114, +103, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 7,104, 97,110,100,108,101, + 0, 0, 0, 0, 1, 0, 0, 0, 24, 0, 0, 0, 16, 40,102,111,114, 32,103,101, +110,101,114, 97,116,111,114, 41, 0, 0, 0, 0, 4, 0, 0, 0, 24, 0, 0, 0, + 12, 40,102,111,114, 32,115,116, 97,116,101, 41, 0, 0, 0, 0, 4, 0, 0, 0, + 24, 0, 0, 0, 14, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, 0, 0, + 0, 0, 4, 0, 0, 0, 24, 0, 0, 0, 2,105, 0, 0, 0, 0, 5, 0, 0, 0, + 22, 0, 0, 0, 2,118, 0, 0, 0, 0, 5, 0, 0, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,218, 0, 0, 0,227, 0, 2, 0, 11, 0, 0, 0, 28, 0, + 0, 0,133, 0, 0, 0,192, 0, 0, 65, 1, 1,128,128,156, 0, 0,128,197, 1, +192,192,198, 0,128, 1, 0, 1, 0,128,220, 0, 1, 1, 1, 1,128, 1, 64, 0, + 1, 1,129,128, 2, 1, 32, 0, 1, 66, 5, 0,129,194, 70, 1, 0,130, 28, 4, + 65,128, 23,128, 0,192, 22, 0, 1,194, 5, 1, 0, 2, 64, 0,129,194,134, 1, +128, 66, 28,127,253, 65, 31, 0, 2, 1, 5, 2, 66, 65, 6, 0, 0, 1, 64, 0, +128, 1,128, 1,128, 65, 28, 0,128, 0, 30, 0, 0, 0, 10, 4, 0, 0, 0, 7, +114, 97,119,103,101,116, 0, 4, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 4, + 0, 0, 0, 6,116, 97, 98,108,101, 0, 4, 0, 0, 0, 5,103,101,116,110, 0, + 3, 63,240, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 12,105,117,112, 71,101,116, + 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,104, 97,110,100,108, +101, 0, 4, 0, 0, 0, 7, 65,112,112,101,110,100, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 14,115,101,116, 65,116,116,114,105, 98, +117,116,101,115, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0,219, 0, 0, 0, +219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,220, 0, 0, 0,220, 0, 0, 0, +220, 0, 0, 0,220, 0, 0, 0,221, 0, 0, 0,221, 0, 0, 0,221, 0, 0, 0, +221, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0, +222, 0, 0, 0,223, 0, 0, 0,223, 0, 0, 0,223, 0, 0, 0,223, 0, 0, 0, +221, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0, +226, 0, 0, 0,227, 0, 0, 0, 8, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, + 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 4, 0, + 0, 0, 27, 0, 0, 0, 2,110, 0, 0, 0, 0, 8, 0, 0, 0, 27, 0, 0, 0, + 12, 40,102,111,114, 32,105,110,100,101,120, 41, 0, 0, 0, 0, 11, 0, 0, 0, + 22, 0, 0, 0, 12, 40,102,111,114, 32,108,105,109,105,116, 41, 0, 0, 0, 0, + 11, 0, 0, 0, 22, 0, 0, 0, 11, 40,102,111,114, 32,115,116,101,112, 41, 0, + 0, 0, 0, 11, 0, 0, 0, 22, 0, 0, 0, 2,105, 0, 0, 0, 0, 12, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,238, 0, 0, 0,252, 0, 2, + 0, 10, 0, 0, 0, 52, 0, 0, 0,128, 0,128, 64,219,128, 0, 0, 22, 0, 0, + 0,193, 1, 0,192, 21, 0, 0, 64,133, 0, 0, 0,154,128, 0,128, 22, 0, 0, + 64,133,129, 0, 0,137,128, 9,192, 22, 0, 0,192,133, 0, 0,192,202,130, 65, + 64,201,131, 65,192,201,132, 66, 64,201, 1, 0,128,156, 0, 2,128,197, 0, 1, + 1, 10,133,195, 1, 9,134,195, 1, 9,129, 0, 1, 9,131, 67,129, 9, 1, 0, +128,220, 0, 3,193, 5, 1, 0,193, 74, 1,128, 1,128, 1, 0, 1,192,136, 68, + 65, 73,137, 68,193, 73,138, 69, 65, 73, 1, 0, 65, 98, 1, 0,129, 28, 0, 5, +129, 69, 0,129, 1,138, 2, 0, 1,192,130, 69,193,137,140, 0,129,137,140,128, +129,137,141, 0,129,137, 0,128, 65,162, 1, 0,129, 92, 0, 0, 64,199, 2,198, +193,139, 0, 7, 2, 5, 0, 7, 2, 69, 2, 0, 65,156, 2,199, 65,139, 1, 0, + 65,156, 3, 0, 1,131, 0, 0, 65,135, 0,128, 0, 30, 0, 0, 0, 30, 4, 0, + 0, 0, 1, 0, 4, 0, 0, 0, 20,101,114,114,111,114, 95,109,101,115,115, 97, +103,101, 95,112,111,112,117,112, 0, 4, 0, 0, 0, 6,118, 97,108,117,101, 0, + 4, 0, 0, 0, 7, 98,117,116,116,111,110, 0, 4, 0, 0, 0, 6,116,105,116, +108,101, 0, 4, 0, 0, 0, 3, 79,107, 0, 4, 0, 0, 0, 5,115,105,122,101, + 0, 4, 0, 0, 0, 3, 54, 48, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, + 0, 4, 0, 0, 0, 44,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95, +112,111,112,117,112, 32, 61, 32,110,105,108, 59, 32,114,101,116,117,114,110, 32, +105,117,112, 46, 67, 76, 79, 83, 69, 0, 4, 0, 0, 0, 10,109,117,108,116,105, +108,105,110,101, 0, 4, 0, 0, 0, 7,101,120,112, 97,110,100, 0, 4, 0, 0, + 0, 4, 89, 69, 83, 0, 4, 0, 0, 0, 9,114,101, 97,100,111,110,108,121, 0, + 4, 0, 0, 0, 8, 51, 48, 48,120, 49, 53, 48, 0, 4, 0, 0, 0, 5,118, 98, +111,120, 0, 4, 0, 0, 0, 10, 97,108,105,103,110,109,101,110,116, 0, 4, 0, + 0, 0, 8, 65, 67, 69, 78, 84, 69, 82, 0, 4, 0, 0, 0, 7,109, 97,114,103, +105,110, 0, 4, 0, 0, 0, 6, 49, 48,120, 49, 48, 0, 4, 0, 0, 0, 4,103, + 97,112, 0, 4, 0, 0, 0, 3, 49, 48, 0, 4, 0, 0, 0, 7,100,105, 97,108, +111,103, 0, 4, 0, 0, 0, 14, 69,114,114,111,114, 32, 77,101,115,115, 97,103, +101, 0, 4, 0, 0, 0, 11,100,101,102, 97,117,108,116,101,115, 99, 0, 4, 0, + 0, 0, 13,100,101,102, 97,117,108,116,101,110,116,101,114, 0, 4, 0, 0, 0, + 11,115,116, 97,114,116,102,111, 99,117,115, 0, 4, 0, 0, 0, 6,112,111,112, +117,112, 0, 4, 0, 0, 0, 7, 67, 69, 78, 84, 69, 82, 0, 4, 0, 0, 0, 8, +100,101,115,116,114,111,121, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0,239, + 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,240, + 0, 0, 0,240, 0, 0, 0,240, 0, 0, 0,241, 0, 0, 0,241, 0, 0, 0,241, + 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, + 0, 0, 0,243, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, + 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,245, 0, 0, 0,245, + 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, + 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, + 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, + 0, 0, 0,246, 0, 0, 0,247, 0, 0, 0,248, 0, 0, 0,248, 0, 0, 0,248, + 0, 0, 0,248, 0, 0, 0,249, 0, 0, 0,249, 0, 0, 0,250, 0, 0, 0,250, + 0, 0, 0,252, 0, 0, 0, 6, 0, 0, 0, 4,101,114,114, 0, 0, 0, 0, 0, + 0, 0, 0, 51, 0, 0, 0, 10,116,114, 97, 99,101, 98, 97, 99,107, 0, 0, 0, + 0, 0, 0, 0, 0, 51, 0, 0, 0, 3, 98,116, 0, 0, 0, 0, 17, 0, 0, 0, + 51, 0, 0, 0, 3,109,108, 0, 0, 0, 0, 24, 0, 0, 0, 51, 0, 0, 0, 3, +118, 98, 0, 0, 0, 0, 33, 0, 0, 0, 51, 0, 0, 0, 3,100,103, 0, 0, 0, + 0, 42, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,254, 0, 0, + 0,254, 0, 0, 7, 2, 0, 0, 0, 2, 1, 0, 0, 30, 0,128, 0, 30, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0,254, 0, 0, 0,254, 0, 0, + 0, 1, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 13, 0, 2, 0, 6, 0, 0, + 0, 29, 0, 0, 64, 26,128, 0,192, 22, 0, 0, 0,133, 0,128, 0,192, 1, 0, + 64,156, 0,128, 0, 30, 0, 0, 64,133, 0, 0,128,197, 0, 0, 1, 0, 1, 0, + 0,220, 0, 0,128,156, 1, 64,192,198, 0, 0, 64,218,128, 1, 0, 22, 0, 0, + 0,197, 1, 65, 1, 6, 1, 0, 64,220, 0,128, 0, 30,128, 2, 0, 22, 0, 1, + 64,197, 1,193,128,198, 1, 0, 1, 0, 0, 0,193, 65, 1,128, 64,220, 0, 1, +192,197, 1, 0, 1, 0, 1, 0, 0,221, 0, 0, 0,222, 0,128, 0, 30, 0, 0, + 0, 8, 4, 0, 0, 0, 14, 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, 69, + 0, 4, 0, 0, 0, 5,112, 97, 99,107, 0, 4, 0, 0, 0, 6,112, 99, 97,108, +108, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 3, 64, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 6,116, 97, 98,108,101, 0, 4, 0, 0, 0, 7,114,101,109,111, +118,101, 0, 4, 0, 0, 0, 7,117,110,112, 97, 99,107, 0, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 2, 0, + 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 5, 0, 0, 1, 5, 0, 0, 1, 5, 0, + 0, 1, 5, 0, 0, 1, 5, 0, 0, 1, 6, 0, 0, 1, 6, 0, 0, 1, 6, 0, + 0, 1, 7, 0, 0, 1, 7, 0, 0, 1, 7, 0, 0, 1, 8, 0, 0, 1, 8, 0, + 0, 1, 10, 0, 0, 1, 10, 0, 0, 1, 10, 0, 0, 1, 10, 0, 0, 1, 10, 0, + 0, 1, 11, 0, 0, 1, 11, 0, 0, 1, 11, 0, 0, 1, 11, 0, 0, 1, 13, 0, + 0, 0, 3, 0, 0, 0, 2,102, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 4,101,114,114, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 4,114,101,116, + 0, 0, 0, 0, 11, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 15, 0, 0, 1, 15, 0, 1, 0, 4, 0, 0, 0, 7, 0, 0, 0, 69, 0, 0, 64, +133, 0, 0, 0,192, 1, 0, 0,156, 0, 0, 0, 93, 0, 0, 0, 94, 0,128, 0, + 30, 0, 0, 0, 2, 4, 0, 0, 0, 15,112,114,111,116,101, 99,116,101,100, 99, + 97,108,108, 95, 0, 4, 0, 0, 0, 11,108,111, 97,100,115,116,114,105,110,103, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 1, 15, 0, 0, 1, 15, 0, 0, 1, + 15, 0, 0, 1, 15, 0, 0, 1, 15, 0, 0, 1, 15, 0, 0, 1, 15, 0, 0, 0, + 1, 0, 0, 0, 2,115, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 16, 0, 0, 1, 16, 0, 1, 0, 4, 0, 0, 0, 7, 0, + 0, 0, 69, 0, 0, 64,133, 0, 0, 0,192, 1, 0, 0,156, 0, 0, 0, 93, 0, + 0, 0, 94, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 15,112,114,111,116, +101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 0, 0, 0, 9,108,111, 97,100, +102,105,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 1, 16, 0, 0, 1, + 16, 0, 0, 1, 16, 0, 0, 1, 16, 0, 0, 1, 16, 0, 0, 1, 16, 0, 0, 1, + 16, 0, 0, 0, 1, 0, 0, 0, 2,102, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 18, 0, 0, 1, 20, 0, 3, 0, 8, 0, + 0, 0, 9, 0, 0, 0,197, 1,192, 64,198, 0, 0,129, 1,129,128, 1, 78,129, +128, 65,142,129,128,129,206, 2,128, 0,221, 0, 0, 0,222, 0,128, 0, 30, 0, + 0, 0, 4, 4, 0, 0, 0, 7,115,116,114,105,110,103, 0, 4, 0, 0, 0, 7, +102,111,114,109, 97,116, 0, 4, 0, 0, 0, 9, 37,100, 32, 37,100, 32, 37,100, + 0, 3, 64,111,224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 1, 19, 0, 0, 1, 19, 0, 0, 1, 19, 0, 0, 1, 19, 0, 0, 1, 19, 0, 0, + 1, 19, 0, 0, 1, 19, 0, 0, 1, 19, 0, 0, 1, 20, 0, 0, 0, 3, 0, 0, + 0, 2,114, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2,103, 0, 0, 0, + 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 98, 0, 0, 0, 0, 0, 0, 0, 0, 8, + 0, 0, 0, 0, 0, 0, 0,114, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 27, + 0, 0, 0, 9, 0, 0, 0, 37, 0, 0, 0, 29, 0, 0, 0, 53, 0, 0, 0, 55, + 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, + 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 79, 0, 0, 0,109, 0, 0, 0,111, + 0, 0, 0,111, 0, 0, 0,111, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, + 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, + 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, + 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, + 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,130, 0, 0, 0,122, 0, 0, 0,136, + 0, 0, 0,132, 0, 0, 0,156, 0, 0, 0,138, 0, 0, 0,162, 0, 0, 0,163, + 0, 0, 0,163, 0, 0, 0,164, 0, 0, 0,166, 0, 0, 0,168, 0, 0, 0,166, + 0, 0, 0,170, 0, 0, 0,172, 0, 0, 0,170, 0, 0, 0,174, 0, 0, 0,176, + 0, 0, 0,174, 0, 0, 0,178, 0, 0, 0,189, 0, 0, 0,178, 0, 0, 0,191, + 0, 0, 0,203, 0, 0, 0,191, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, + 0, 0, 0,207, 0, 0, 0,214, 0, 0, 0,215, 0, 0, 0,215, 0, 0, 0,216, + 0, 0, 0,218, 0, 0, 0,227, 0, 0, 0,218, 0, 0, 0,229, 0, 0, 0,229, + 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0,236, 0, 0, 0,236, 0, 0, 0,252, + 0, 0, 0,238, 0, 0, 0,254, 0, 0, 0,254, 0, 0, 1, 13, 0, 0, 1, 0, + 0, 0, 1, 15, 0, 0, 1, 15, 0, 0, 1, 16, 0, 0, 1, 16, 0, 0, 1, 20, + 0, 0, 1, 18, 0, 0, 1, 24, 0, 0, 1, 24, 0, 0, 1, 24, 0, 0, 1, 24, + 0, 0, 1, 25, 0, 0, 1, 25, 0, 0, 1, 25, 0, 0, 1, 25, 0, 0, 1, 25, + 0, 0, 1, 26, 0, 0, 1, 26, 0, 0, 1, 26, 0, 0, 1, 26, 0, 0, 1, 26, + 0, 0, 1, 27, 0, 0, 1, 27, 0, 0, 1, 27, 0, 0, 1, 28, 0, 0, 1, 28, + 0, 0, 1, 29, 0, 0, 0, 3, 0, 0, 0, 16,119,105,100,103,101,116, 95,103, +101,116,116, 97, 98,108,101, 0, 0, 0, 0, 7, 0, 0, 0,113, 0, 0, 0, 17, +105,104, 97,110,100,108,101, 95,103,101,116,116, 97, 98,108,101, 0, 0, 0, 0, + 16, 0, 0, 0,113, 0, 0, 0, 17,105,104, 97,110,100,108,101, 95,115,101,116, +116, 97, 98,108,101, 0, 0, 0, 0, 17, 0, 0, 0,113, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/iuplua_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/iuplua_be64.loh b/iup/srclua5/loh/iuplua_be64.loh new file mode 100755 index 0000000..94837b6 --- /dev/null +++ b/iup/srclua5/loh/iuplua_be64.loh @@ -0,0 +1,545 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/iuplua_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/iuplua_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,105,117,112,108,117, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 7,114, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 36, 0, 0, 0, + 7, 64, 0, 0, 36, 64, 0, 0, 7,128, 0, 0, 36,128, 0, 0, 69,192, 0, 0, +129, 0, 1, 0, 92, 64, 0, 1, 69, 64, 1, 0,129, 0, 1, 0,193,128, 1, 0, + 0, 1, 0, 0, 92, 64, 0, 2,100,192, 0, 0,164, 0, 1, 0,197,192, 0, 0, + 1,193, 1, 0,220, 64, 0, 1,197, 64, 1, 0, 1,193, 1, 0, 65,129, 1, 0, +128, 1,128, 0,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 1, 2, 0, +128, 1, 0, 1,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 65, 2, 0, +133,129, 2, 0,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65,193, 2, 0, +133, 1, 3, 0,220, 64, 0, 2,228, 64, 1, 0,199, 64, 3, 0,228,128, 1, 0, +199,128, 3, 0,228,192, 1, 0,199,192, 3, 0,202, 64, 0, 0, 10, 1, 0, 0, +201, 0,129,136,199, 0, 4, 0,197, 0, 4, 0, 36, 1, 2, 0,201, 0, 1,137, +197, 0, 4, 0, 36, 65, 2, 0,201, 0,129,137,197, 0, 4, 0, 36,129, 2, 0, +201, 0, 1,138,197, 0, 4, 0, 36,193, 2, 0,201, 0,129,138,197, 0, 4, 0, + 36, 1, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 4, 0, 65, 1, 1, 0, +220, 64,128, 1,202, 64, 0, 0, 5, 1, 4, 0,201, 0,129,140,199, 0, 6, 0, +197, 0, 6, 0, 36, 65, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 6, 0, + 65, 1, 1, 0,220, 64,128, 1,195, 0,128, 1,199,128, 6, 0,228,128, 3, 0, +199,192, 6, 0,228,192, 3, 0,199, 0, 7, 0,228, 0, 4, 0,199, 64, 7, 0, +228, 64, 4, 0,199,128, 7, 0,228,128, 4, 0,199,192, 7, 0,228,192, 4, 0, +199, 0, 8, 0,197, 64, 8, 0,198,128,200, 1,218, 0, 0, 0, 22,128, 3,128, +197, 64, 8, 0,198,128,200, 1,198,192,200, 1, 5, 65, 9, 0,201, 0, 1,146, +197, 64, 8, 0,198,128,200, 1,198,192,200, 1, 5, 65, 9, 0,201, 0, 1,147, +197, 64, 9, 0, 5, 65, 9, 0,201, 0,129,147,197, 64, 9, 0,201, 0, 73,148, + 30, 0,128, 0, 41, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108, +108, 98, 97, 99,107,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, 67, + 97,108,108, 77,101,116,104,111,100, 0, 4, 17, 0, 0, 0, 0, 0, 0, 0, 82, +101,103,105,115,116,101,114, 67, 97,108,108, 98, 97, 99,107, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 78,101,119, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 77,101,116,104,111,100, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 95, 95,105,110,100,101,120, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 95, 95,110,101,119,105,110,100,101,120, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 95, 95,116,111,115,116,114,105,110,103, 0, 4, 17, 0, 0, + 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,116,111,115,116,114,105,110, +103, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 95, 95,101,113, 0, 4, 16, 0, 0, + 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95, 99,111,109,112, 97,114,101, + 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101, +116,110, 97,109,101, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 15, 0, 0, 0, 0, 0, + 0, 0, 82,101,103,105,115,116,101,114, 72, 97,110,100,108,101, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +115,104,111,119, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,104,105,100,101, 0, 4, + 4, 0, 0, 0, 0, 0, 0, 0,109, 97,112, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0, 99,111,110,115,116,114,117, 99,116,111,114, 0, 4, 14, 0, 0, 0, 0, 0, + 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 4, 0, + 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, + 95,109,101,115,115, 97,103,101, 95,112,111,112,117,112, 0, 4, 14, 0, 0, 0, + 0, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, 69, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,112, 97, 99,107, 0, 4, 15, 0, 0, 0, 0, 0, 0, + 0,112,114,111,116,101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,100,111,102,105,108,101, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 82, + 71, 66, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 95, 71, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,112, 97, 99,107, 97,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,108,111, 97,100,101,100, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,105,117,112, +108,117, 97, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0,105,117,112,108,117, 97, 53, 49, 0, 4, 3, 0, 0, 0, + 0, 0, 0, 0, 95, 77, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 95, 80, 65, 67, + 75, 65, 71, 69, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 0, 27, 0, 0, 0, 0, 1, 7, 7, 35, 0, 0, 0,134, 0,192, 0,198, 0, 0, + 1,218, 64, 0, 0, 22, 0, 0,128, 30, 0,128, 0, 5, 65, 0, 0, 64, 1,128, + 1, 28,129, 0, 1, 23,128, 64, 2, 22,128, 1,128, 0, 1,128, 1, 69,193, 0, + 0,128, 1,128, 0, 92, 1, 0, 1, 29, 1, 0, 0, 30, 1, 0, 0, 22, 0, 4, +128, 5, 65, 0, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 65, 2, 22, 0, 2, +128, 5, 65, 1, 0,135, 64, 1, 0, 69,129, 1, 0, 70,193,193, 2,128, 1,128, + 1, 92,129, 0, 1, 7, 65, 1, 0, 94, 1, 0, 1, 22,128, 0,128, 5,129, 1, + 0, 6, 1, 66, 2, 30, 1, 0, 1, 30, 0,128, 0, 9, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0,240, 63, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,117,110,112, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,115, +101,108,102, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, + 0, 0, 0, 0, 69, 82, 82, 79, 82, 0, 0, 0, 0, 0, 35, 0, 0, 0, 10, 0, + 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, + 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 27, 0, 0, 0, 6, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, 34, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 34, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 1, 0, + 0, 0, 34, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 2, + 0, 0, 0, 34, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,116,101,109,112, 0, + 23, 0, 0, 0, 30, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,114,101,115,117, +108,116, 0, 28, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 0, 3, 0, 5, 15, 0, 0, 0,197, + 0, 0, 0,198, 0,128, 1,218, 64, 0, 0, 22,128, 0,128,197, 0, 0, 0, 10, + 1, 0, 0,201, 0, 1, 0,197, 0, 0, 0,198, 0,128, 1,154, 0, 0, 0, 22, + 64, 0,128,201, 64, 0, 1, 22, 0, 0,128,201, 64,128,128, 30, 0,128, 0, 2, + 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, +115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 15, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 35, 0, 0, 0, 37, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 99, 98, 0, 9, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, + 0, 53, 0, 0, 0, 0, 2, 0, 7, 21, 0, 0, 0,128, 0, 0, 0,195, 0,128, + 1, 5, 1, 0, 0, 64, 1, 0, 1,128, 1,128, 0, 28,129,128, 1,192, 0, 0, + 2,218, 0, 0, 0, 22, 0, 0,128,222, 0, 0, 1, 5, 1, 0, 0, 64, 1, 0, + 1,129, 65, 0, 0, 28,129,128, 1,128, 0, 0, 2,154, 64, 0, 0, 22, 0,252, +127, 3, 1, 0, 2, 30, 1, 0, 1, 22, 64,251,127, 30, 0,128, 0, 2, 0, 0, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103,101,116, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 0, 0, 0, 0, 21, 0, 0, + 0, 45, 0, 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, + 0, 48, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, + 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, + 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, + 0, 53, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106, +101, 99,116, 0, 0, 0, 0, 0, 20, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, +105,110,100,101,120, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,112, 0, 1, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, +118, 0, 2, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 59, 0, 0, 0, 79, 0, 0, 0, 0, 2, 0, 7, 67, 0, 0, 0,133, 0, + 0, 0,134, 64, 64, 1,192, 0,128, 0,156,128, 0, 1,197,128, 0, 0,198,128, +128, 1,218, 0, 0, 0, 22,192, 3,128,197,192, 0, 0, 0, 1, 0, 0,220,128, + 0, 1,218, 0, 0, 0, 22, 0, 1,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, + 0, 1, 87, 64, 65, 2, 22,128, 0,128, 5,129, 1, 0, 65,193, 1, 0, 28, 65, + 0, 1, 6, 65,128, 1, 30, 1, 0, 1, 22, 64, 10,128,197, 0, 2, 0, 0, 1, + 0, 0, 64, 1, 0, 1,220,128,128, 1,218, 64, 0, 0, 22,192, 3,128, 5,193, + 0, 0, 64, 1, 0, 0, 28,129, 0, 1, 26, 1, 0, 0, 22, 0, 1,128, 69, 1, + 1, 0,128, 1, 0, 2, 92,129, 0, 1, 87, 64,193, 2, 22,128, 0,128, 69,129, + 1, 0,129,193, 1, 0, 92, 65, 0, 1, 70, 65, 0, 2, 94, 1, 0, 1, 22,192, + 4,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 87, 64, 66, 2, 22, 0, + 1,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 64, 2, 22, 0, + 2,128, 5,129, 2, 0, 64, 1,128, 1, 28,129, 0, 1, 26, 1, 0, 0, 22, 64, + 0,128, 30, 1, 0, 1, 22,128, 0,128,222, 0, 0, 1, 22, 0, 0,128,222, 0, + 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115, +116,114,105,110,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,117,112,112,101,114, + 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107,115, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101, +116, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, + 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +101,114,114,111,114, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0,105,110,118, 97,108, +105,100, 32,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0, 71,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0, 71,101,116, 72, 97,110,100,108,101, 0, 0, 0, 0, 0, 67, 0, 0, 0, 60, + 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 61, + 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 66, 0, 0, 0, 66, + 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 68, + 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, + 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, + 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, + 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 73, + 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 74, 0, 0, 0, 76, + 0, 0, 0, 79, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, + 97,110,100,108,101, 0, 0, 0, 0, 0, 66, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 66, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 73, 78, 68, 69, 88, 0, 4, 0, 0, 0, 66, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 11, 0, 0, 0, 23, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 28, 0, 0, 0, 66, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 33, 0, + 0, 0, 45, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,104, 0, 59, 0, 0, + 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, + 0,109, 0, 0, 0, 0, 3, 0, 14, 78, 0, 0, 0,197, 0, 0, 0, 0, 1,128, + 0,220,128, 0, 1, 5, 1, 0, 0, 64, 1, 0, 1, 28,129, 0, 1, 69, 65, 0, + 0,128, 1, 0, 0, 92,129, 0, 1, 90, 1, 0, 0, 22, 0, 1,128,133, 1, 0, + 0,192, 1,128, 2,156,129, 0, 1, 87,128, 64, 3, 22,128, 0,128,133,193, 0, + 0,193, 1, 1, 0,156, 65, 0, 1, 87, 64,193, 1, 22, 64, 0,128, 23,128,193, + 1, 22, 0, 13,128,133,129, 1, 0,134,193, 65, 3,192, 1,128, 0,156,129, 0, + 1,197, 1, 2, 0,198,129,129, 3,218, 1, 0, 0, 22,128, 3,128, 6, 66,194, + 3, 26, 66, 0, 0, 22,192, 0,128, 69,130, 2, 0,128, 2, 0, 0, 92,130, 0, + 1, 6, 66,130, 3, 69,194, 2, 0,128, 2, 0, 0,192, 2, 0, 3, 0, 3, 0, + 4, 64, 3, 0, 1, 92, 66,128, 2, 73,129,128, 0, 22,128, 7,128, 5, 2, 3, + 0, 64, 2, 0, 1, 28,130, 0, 1, 23, 64, 67, 4, 22, 64, 2,128, 5,130, 3, + 0, 64, 2, 0, 1, 28,130, 0, 1, 69,194, 3, 0,128, 2, 0, 0,192, 2, 0, + 3, 0, 3, 0, 4, 92, 66, 0, 2, 73, 1,196, 0, 22,192, 3,128, 87,128, 65, + 2, 22,192, 0,128, 87, 64, 65, 2, 22, 64, 0,128, 23, 64, 68, 2, 22,128, 1, +128, 5,194, 3, 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2, 0, 1, 28, 66, 0, + 2, 73, 1,196, 0, 22,128, 0,128, 73,129,128, 0, 22, 0, 0,128, 73,129,128, + 0, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121, +112,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105, +100,103,101,116, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, 0, 4, 19, 0, 0, 0, + 0, 0, 0, 0,105,110,118, 97,108,105,100, 32,105,117,112, 32,104, 97,110,100, +108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, + 0, 0, 0, 0,117,112,112,101,114, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 13, + 0, 0, 0, 0, 0, 0, 0, 71,101,116, 67,108, 97,115,115, 78, 97,109,101, 0, + 4, 15, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, 97,108,108, 98, + 97, 99,107, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97, +110,100,108,101, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108, +101, 95,115,101,116,110, 97,109,101, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0, 83, +116,111,114,101, 65,116,116,114,105, 98,117,116,101, 0, 0, 4, 4, 0, 0, 0, + 0, 0, 0, 0,110,105,108, 0, 0, 0, 0, 0, 78, 0, 0, 0, 82, 0, 0, 0, + 82, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, + 84, 0, 0, 0, 84, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, + 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, + 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 86, 0, 0, 0, + 86, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, + 87, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, + 90, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 92, 0, 0, 0, + 92, 0, 0, 0, 92, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, + 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, + 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, + 97, 0, 0, 0, 97, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, + 98, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 99, 0, 0, 0, +100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, +100, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0, +101, 0, 0, 0,102, 0, 0, 0,102, 0, 0, 0,104, 0, 0, 0,105, 0, 0, 0, +107, 0, 0, 0,109, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 77, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0,116,105, 0, 3, 0, 0, 0, 77, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0,116,118, 0, 6, 0, 0, 0, 77, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 9, 0, 0, 0, 77, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 73, 78, 68, 69, 88, 0, 27, 0, 0, 0, 75, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 99, 98, 0, 29, 0, 0, 0, 75, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 32, 0, 0, 0, 45, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 54, 0, 0, 0, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 0, 0, 0,130, + 0, 0, 0, 0, 1, 0, 6, 19, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 92, +128, 0, 1, 90, 64, 0, 0, 22,192, 2,128,133, 64, 0, 0,134,128, 64, 1,193, +192, 0, 0, 5, 1, 1, 0, 64, 1, 0, 0, 28, 1, 0, 1,156,128, 0, 0,197, + 64, 1, 0, 0, 1, 0, 1, 64, 1, 0, 0,220, 64,128, 1,158, 0, 0, 1, 94, + 0, 0, 1, 30, 0,128, 0, 6, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, + 71,101,116, 78, 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,116,114, +105,110,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,102,111,114,109, 97,116, 0, + 4, 17, 0, 0, 0, 0, 0, 0, 0, 95, 73, 85, 80, 76, 85, 65, 95, 78, 65, 77, + 69, 40, 37,115, 41, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,116,111,115,116,114, +105,110,103, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 72, 97,110,100, +108,101, 0, 0, 0, 0, 0, 19, 0, 0, 0,123, 0, 0, 0,123, 0, 0, 0,123, + 0, 0, 0,124, 0, 0, 0,124, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, + 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,126, + 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,127, 0, 0, 0,129, + 0, 0, 0,130, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,118, + 0, 0, 0, 0, 0, 18, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109, +101, 0, 3, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 97,117, +116,111,110, 97,109,101, 0, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0,132, 0, 0, 0,136, 0, 0, 0, 0, 1, 0, 4, 6, + 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0,228, 0, 0, 0, 0, 0, 0, 0, 73, +192, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,133, 0, 0, 0,135, 0, 0, 0, 1, 1, + 0, 4, 6, 0, 0, 0, 68, 0, 0, 0, 75, 0,192, 0,192, 0, 0, 0, 93, 0, +128, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0, 99,111,110,115,116,114,117, 99,116,111,114, 0, 0, 0, 0, 0, 6, + 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, + 0, 0, 0,135, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 99,116,114,108, 0, 6, 0, 0, 0,133, 0, 0, 0,133, 0, 0, 0, +135, 0, 0, 0,135, 0, 0, 0,135, 0, 0, 0,136, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,138, 0, 0, 0,156, 0, 0, + 0, 0, 2, 0, 8, 31, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, 65, 0, + 0,156, 64,128, 1,133,128, 0, 0,192, 0, 0, 0,156,128, 0, 1,154, 64, 0, + 0, 22,192, 4,128,197,192, 0, 0, 5, 1, 1, 0, 6, 65, 65, 2, 64, 1,128, + 0, 28,129, 0, 1,198, 0,129, 1,218, 64, 0, 0, 22, 0, 0,128,197,128, 1, + 0, 10,129, 0, 0, 9,193,128,131, 9, 1, 0,132, 69, 1, 0, 0,128, 1, 0, + 2,193, 65, 2, 0, 92, 65,128, 1, 69,129, 2, 0,128, 1, 0, 0,192, 1, 0, + 2, 92, 65,128, 1, 30, 0, 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101,116, 0, + 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,117,112, +112,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 87,105,100,103,101,116, 0, 0, 0, 0, 0, 31, 0, + 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,142, 0, + 0, 0,142, 0, 0, 0,142, 0, 0, 0,143, 0, 0, 0,143, 0, 0, 0,145, 0, + 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, + 0, 0,146, 0, 0, 0,146, 0, 0, 0,147, 0, 0, 0,150, 0, 0, 0,150, 0, + 0, 0,150, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, + 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,155, 0, + 0, 0,156, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97, +110,100,108,101, 0, 0, 0, 0, 0, 30, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, + 0,116,121,112,101,110, 97,109,101, 0, 0, 0, 0, 0, 30, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 7, 0, 0, 0, 30, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 15, 0, 0, 0, 29, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 21, 0, + 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,166, 0, + 0, 0,168, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, + 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, + 0, 0, 0, 83,104,111,119, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110, +100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0,167, 0, 0, 0,167, 0, 0, 0, +167, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0,170, 0, 0, 0,172, 0, 0, 0, 0, 1, 0, 3, 4, + 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72,105,100,101, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, + 0,171, 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 0, 0, 0, +176, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, + 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0, 77, 97,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 4, 0, 0, 0,175, 0, 0, 0,175, 0, 0, 0,175, 0, 0, + 0,176, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106, +101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,178, 0, 0, 0,189, 0, 0, 0, 0, 2, 0, 7, 23, 0, 0, 0, +139, 0, 64, 0, 0, 1,128, 0,156,128,128, 1,202,128, 0, 0,201, 0,128,128, +201,128, 0,129, 5,193, 0, 0, 64, 1, 0, 1,129, 1, 1, 0, 28, 65,128, 1, + 5,193, 0, 0, 64, 1,128, 1,129, 65, 1, 0, 28, 65,128, 1, 5,129, 1, 0, + 64, 1, 0, 1,128, 1,128, 1, 28, 65,128, 1, 11,193,193, 1,128, 1,128, 0, + 28, 65,128, 1,158, 0, 0, 1, 30, 0,128, 0, 8, 0, 0, 0, 4, 14, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 87,105,100,103,101,116, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 0, 0, 0, + 0, 23, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,180, 0, 0, + 0,181, 0, 0, 0,182, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,184, 0, 0, + 0,184, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, + 0,186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,187, 0, 0, + 0,187, 0, 0, 0,187, 0, 0, 0,188, 0, 0, 0,189, 0, 0, 0, 4, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 3, 0, + 0, 0, 22, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, + 0, 6, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,191, 0, 0, 0,203, 0, 0, 0, 0, 2, 0, 12, 25, 0, 0, 0,134, 0, 64, + 0,197, 64, 0, 0, 0, 1,128, 0,220, 0, 1, 1, 22, 0, 4,128, 5,130, 0, + 0, 64, 2, 0, 3, 28,130, 0, 1, 23,192, 64, 4, 22,128, 2,128, 5, 2, 1, + 0, 64, 2,128, 3, 28,130, 0, 1, 23, 64, 65, 4, 22, 64, 1,128, 5,130, 1, + 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2,128, 3, 28, 66, 0, 2, 22, 0, 0, +128,137,192, 1, 3,225,128, 0, 0, 22, 0,251,127, 30, 0,128, 0, 7, 0, 0, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,112, 97,105,114,115, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,116,121,112,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101, +114, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100, +108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,115,101,116, 0, 0, + 0, 0, 0, 25, 0, 0, 0,192, 0, 0, 0,193, 0, 0, 0,193, 0, 0, 0,193, + 0, 0, 0,193, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, + 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, + 0, 0, 0,194, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, + 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,200, 0, 0, 0,193, 0, 0, 0,201, + 0, 0, 0,203, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, + 98,106,101, 99,116, 0, 0, 0, 0, 0, 24, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 24, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0,104, 97,110,100,108,101, 0, 1, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32,103,101,110,101,114, 97,116,111,114, 41, + 0, 4, 0, 0, 0, 24, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111, +114, 32,115,116, 97,116,101, 41, 0, 4, 0, 0, 0, 24, 0, 0, 0, 14, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, 0, 4, + 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 5, 0, 0, + 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 5, 0, 0, 0, 22, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,218, 0, 0, 0,227, + 0, 0, 0, 0, 2, 0, 11, 28, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, + 65, 0, 0,156,128,128, 1,197,128, 0, 0,198,192,192, 1, 0, 1,128, 0,220, +128, 0, 1, 1, 1, 1, 0, 64, 1,128, 1,129, 1, 1, 0, 32, 1, 2,128, 5, + 66, 1, 0, 70,194,129, 0, 28,130, 0, 1, 23,128, 65, 4, 22,192, 0,128, 5, +194, 1, 0, 64, 2, 0, 1,134,194,129, 0, 28, 66,128, 1, 31, 65,253,127, 5, + 1, 2, 0, 6, 65, 66, 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, 1, 30, + 0,128, 0, 10, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103, +101,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 5, 0, 0, 0, 0, + 0, 0, 0,103,101,116,110, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115, +101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 0, 0, 0, 0, 28, 0, 0, + 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,220, 0, 0, + 0,220, 0, 0, 0,220, 0, 0, 0,220, 0, 0, 0,221, 0, 0, 0,221, 0, 0, + 0,221, 0, 0, 0,221, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,222, 0, 0, + 0,222, 0, 0, 0,222, 0, 0, 0,223, 0, 0, 0,223, 0, 0, 0,223, 0, 0, + 0,223, 0, 0, 0,221, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,226, 0, 0, + 0,226, 0, 0, 0,226, 0, 0, 0,227, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 27, + 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 8, 0, 0, 0, 27, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110,100,101,120, 41, + 0, 11, 0, 0, 0, 22, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111, +114, 32,108,105,109,105,116, 41, 0, 11, 0, 0, 0, 22, 0, 0, 0, 11, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 11, 0, 0, 0, + 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 12, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,238, 0, 0, 0,252, 0, + 0, 0, 0, 2, 0, 10, 52, 0, 0, 0,128, 0, 0, 0,219, 64,128, 0, 22, 0, + 0,128,193, 0, 0, 0, 21,192, 0, 1,133, 64, 0, 0,154, 0, 0, 0, 22,128, + 0,128,133, 64, 0, 0,137, 0, 0,129, 22,192, 9,128,133,192, 0, 0,202,192, + 0, 0,201, 64, 65,130,201,192, 65,131,201, 64, 66,132,156,128, 0, 1,197,128, + 2, 0, 10, 1, 1, 0, 9, 1,195,133, 9, 1,195,134, 9, 1, 0,129, 9,129, + 67,131,220,128, 0, 1, 5,193, 3, 0, 74,193, 0, 1,128, 1,128, 1,192, 1, + 0, 1, 73, 65, 68,136, 73,193, 68,137, 73, 65, 69,138, 98, 65, 0, 1, 28,129, + 0, 1, 69,129, 5, 0,138, 1,129, 0,192, 1, 0, 2,137,193, 69,130,137,129, + 0,140,137,129,128,140,137,129, 0,141,162, 65,128, 0, 92,129, 0, 1,199, 64, + 0, 0,139,193,198, 2, 5, 2, 7, 0, 69, 2, 7, 0,156, 65, 0, 2,139, 65, +199, 2,156, 65, 0, 1,131, 1, 0, 3,135, 65, 0, 0, 30, 0,128, 0, 30, 0, + 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 20, 0, 0, 0, 0, 0, 0, + 0,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112,117,112, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 98,117,116,116,111,110, 0, 4, 6, 0, 0, 0, 0, 0, 0, + 0,116,105,116,108,101, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 79,107, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,115,105,122,101, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0, 54, 48, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 4, 44, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, 95,109,101,115,115, + 97,103,101, 95,112,111,112,117,112, 32, 61, 32,110,105,108, 59, 32,114,101,116, +117,114,110, 32,105,117,112, 46, 67, 76, 79, 83, 69, 0, 4, 10, 0, 0, 0, 0, + 0, 0, 0,109,117,108,116,105,108,105,110,101, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,101,120,112, 97,110,100, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 89, 69, + 83, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,114,101, 97,100,111,110,108,121, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0, 51, 48, 48,120, 49, 53, 48, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0,118, 98,111,120, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, + 97,108,105,103,110,109,101,110,116, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 65, + 67, 69, 78, 84, 69, 82, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,114,103, +105,110, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 49, 48,120, 49, 48, 0, 4, 4, + 0, 0, 0, 0, 0, 0, 0,103, 97,112, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, + 49, 48, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108,111,103, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 69,114,114,111,114, 32, 77,101,115,115, 97,103, +101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,100,101,102, 97,117,108,116,101,115, + 99, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,100,101,102, 97,117,108,116,101,110, +116,101,114, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,115,116, 97,114,116,102,111, + 99,117,115, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0, 67, 69, 78, 84, 69, 82, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 0, 0, 0, 0, 52, 0, 0, 0, +239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0, +240, 0, 0, 0,240, 0, 0, 0,240, 0, 0, 0,241, 0, 0, 0,241, 0, 0, 0, +241, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0, +243, 0, 0, 0,243, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0, +244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,245, 0, 0, 0, +245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0, +245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0, +246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0, +246, 0, 0, 0,246, 0, 0, 0,247, 0, 0, 0,248, 0, 0, 0,248, 0, 0, 0, +248, 0, 0, 0,248, 0, 0, 0,249, 0, 0, 0,249, 0, 0, 0,250, 0, 0, 0, +250, 0, 0, 0,252, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, +101,114,114, 0, 0, 0, 0, 0, 51, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, +116,114, 97, 99,101, 98, 97, 99,107, 0, 0, 0, 0, 0, 51, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 98,116, 0, 17, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0,109,108, 0, 24, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0,118, 98, 0, 33, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0,100,103, 0, 42, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,254, 0, 0, 0,254, 0, 0, 0, 0, 0, 7, 2, 2, 0, + 0, 0, 30, 0, 0, 1, 30, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 0,254, 0, 0, 0,254, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 13, 1, 0, 0, 0, 2, 0, 6, 29, 0, + 0, 0, 26, 64, 0, 0, 22,192, 0,128,133, 0, 0, 0,192, 0,128, 0,156, 64, + 0, 1, 30, 0,128, 0,133, 64, 0, 0,197,128, 0, 0, 0, 1, 0, 0,220, 0, + 0, 1,156,128, 0, 0,198,192, 64, 1,218, 64, 0, 0, 22, 0, 1,128,197, 0, + 0, 0, 6, 1, 65, 1,220, 64, 0, 1, 30, 0,128, 0, 22, 0, 2,128,197, 64, + 1, 0,198,128,193, 1, 0, 1, 0, 1, 65,193, 0, 0,220, 64,128, 1,197,192, + 1, 0, 0, 1, 0, 1,221, 0, 0, 1,222, 0, 0, 0, 30, 0,128, 0, 8, 0, + 0, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, 69, 83, + 83, 65, 71, 69, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,112, 97, 99,107, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,112, 99, 97,108,108, 0, 3, 0, 0, 0, 0, 0, + 0,240, 63, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, 6, 0, 0, 0, 0, 0, 0, + 0,116, 97, 98,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114,101,109,111, +118,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,117,110,112, 97, 99,107, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 0, 0, 2, + 1, 0, 0, 2, 1, 0, 0, 3, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 5, + 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 6, 1, 0, 0, 6, 1, 0, 0, 6, + 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, 8, 1, 0, 0, 8, + 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, + 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 13, + 1, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,102, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,101,114,114, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, 11, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 1, 0, + 0, 15, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, 64, 0, + 0,192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, 0,128, + 0, 2, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,112,114,111,116,101, 99, +116,101,100, 99, 97,108,108, 95, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,108,111, + 97,100,115,116,114,105,110,103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 15, 1, 0, + 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, + 0, 15, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 1, 0, 0, 16, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, + 64, 0, 0,192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, + 0,128, 0, 2, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,112,114,111,116, +101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +108,111, 97,100,102,105,108,101, 0, 0, 0, 0, 0, 7, 0, 0, 0, 16, 1, 0, + 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, + 0, 16, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,102, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 1, 0, 0, 20, 1, 0, 0, 0, 3, 0, 8, 9, 0, 0, 0,197, 0, 0, 0,198, + 64,192, 1, 1,129, 0, 0, 78, 1,128,129,142, 65,128,129,206,129,128,129,221, + 0,128, 2,222, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, +102,111,114,109, 97,116, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 37,100, 32, 37, +100, 32, 37,100, 0, 3, 0, 0, 0, 0, 0,224,111, 64, 0, 0, 0, 0, 9, 0, + 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, + 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 20, 1, 0, 0, 3, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,114, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0,103, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 98, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, +114, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 9, 0, 0, 0, + 37, 0, 0, 0, 29, 0, 0, 0, 53, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, + 55, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, + 56, 0, 0, 0, 79, 0, 0, 0,109, 0, 0, 0,111, 0, 0, 0,111, 0, 0, 0, +111, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0, +112, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0, +113, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0, +114, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0, +115, 0, 0, 0,130, 0, 0, 0,122, 0, 0, 0,136, 0, 0, 0,132, 0, 0, 0, +156, 0, 0, 0,138, 0, 0, 0,162, 0, 0, 0,163, 0, 0, 0,163, 0, 0, 0, +164, 0, 0, 0,166, 0, 0, 0,168, 0, 0, 0,166, 0, 0, 0,170, 0, 0, 0, +172, 0, 0, 0,170, 0, 0, 0,174, 0, 0, 0,176, 0, 0, 0,174, 0, 0, 0, +178, 0, 0, 0,189, 0, 0, 0,178, 0, 0, 0,191, 0, 0, 0,203, 0, 0, 0, +191, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0, +214, 0, 0, 0,215, 0, 0, 0,215, 0, 0, 0,216, 0, 0, 0,218, 0, 0, 0, +227, 0, 0, 0,218, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0, +229, 0, 0, 0,236, 0, 0, 0,236, 0, 0, 0,252, 0, 0, 0,238, 0, 0, 0, +254, 0, 0, 0,254, 0, 0, 0, 13, 1, 0, 0, 0, 1, 0, 0, 15, 1, 0, 0, + 15, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 20, 1, 0, 0, 18, 1, 0, 0, + 24, 1, 0, 0, 24, 1, 0, 0, 24, 1, 0, 0, 24, 1, 0, 0, 25, 1, 0, 0, + 25, 1, 0, 0, 25, 1, 0, 0, 25, 1, 0, 0, 25, 1, 0, 0, 26, 1, 0, 0, + 26, 1, 0, 0, 26, 1, 0, 0, 26, 1, 0, 0, 26, 1, 0, 0, 27, 1, 0, 0, + 27, 1, 0, 0, 27, 1, 0, 0, 28, 1, 0, 0, 28, 1, 0, 0, 29, 1, 0, 0, + 3, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,119,105,100,103,101,116, 95,103, +101,116,116, 97, 98,108,101, 0, 7, 0, 0, 0,113, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,103,101,116,116, 97, 98,108,101, + 0, 16, 0, 0, 0,113, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,105,104, 97, +110,100,108,101, 95,115,101,116,116, 97, 98,108,101, 0, 17, 0, 0, 0,113, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/iuplua_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/iuplua_le64.loh b/iup/srclua5/loh/iuplua_le64.loh new file mode 100755 index 0000000..fb4a432 --- /dev/null +++ b/iup/srclua5/loh/iuplua_le64.loh @@ -0,0 +1,545 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/iuplua_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/iuplua_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,105,117,112,108,117, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 7,114, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 36, 0, 0, 0, + 7, 64, 0, 0, 36, 64, 0, 0, 7,128, 0, 0, 36,128, 0, 0, 69,192, 0, 0, +129, 0, 1, 0, 92, 64, 0, 1, 69, 64, 1, 0,129, 0, 1, 0,193,128, 1, 0, + 0, 1, 0, 0, 92, 64, 0, 2,100,192, 0, 0,164, 0, 1, 0,197,192, 0, 0, + 1,193, 1, 0,220, 64, 0, 1,197, 64, 1, 0, 1,193, 1, 0, 65,129, 1, 0, +128, 1,128, 0,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 1, 2, 0, +128, 1, 0, 1,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 65, 2, 0, +133,129, 2, 0,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65,193, 2, 0, +133, 1, 3, 0,220, 64, 0, 2,228, 64, 1, 0,199, 64, 3, 0,228,128, 1, 0, +199,128, 3, 0,228,192, 1, 0,199,192, 3, 0,202, 64, 0, 0, 10, 1, 0, 0, +201, 0,129,136,199, 0, 4, 0,197, 0, 4, 0, 36, 1, 2, 0,201, 0, 1,137, +197, 0, 4, 0, 36, 65, 2, 0,201, 0,129,137,197, 0, 4, 0, 36,129, 2, 0, +201, 0, 1,138,197, 0, 4, 0, 36,193, 2, 0,201, 0,129,138,197, 0, 4, 0, + 36, 1, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 4, 0, 65, 1, 1, 0, +220, 64,128, 1,202, 64, 0, 0, 5, 1, 4, 0,201, 0,129,140,199, 0, 6, 0, +197, 0, 6, 0, 36, 65, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 6, 0, + 65, 1, 1, 0,220, 64,128, 1,195, 0,128, 1,199,128, 6, 0,228,128, 3, 0, +199,192, 6, 0,228,192, 3, 0,199, 0, 7, 0,228, 0, 4, 0,199, 64, 7, 0, +228, 64, 4, 0,199,128, 7, 0,228,128, 4, 0,199,192, 7, 0,228,192, 4, 0, +199, 0, 8, 0,197, 64, 8, 0,198,128,200, 1,218, 0, 0, 0, 22,128, 3,128, +197, 64, 8, 0,198,128,200, 1,198,192,200, 1, 5, 65, 9, 0,201, 0, 1,146, +197, 64, 8, 0,198,128,200, 1,198,192,200, 1, 5, 65, 9, 0,201, 0, 1,147, +197, 64, 9, 0, 5, 65, 9, 0,201, 0,129,147,197, 64, 9, 0,201, 0, 73,148, + 30, 0,128, 0, 41, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108, +108, 98, 97, 99,107,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,117,112, 67, + 97,108,108, 77,101,116,104,111,100, 0, 4, 17, 0, 0, 0, 0, 0, 0, 0, 82, +101,103,105,115,116,101,114, 67, 97,108,108, 98, 97, 99,107, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 78,101,119, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 77,101,116,104,111,100, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 95, 95,105,110,100,101,120, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 95, 95,110,101,119,105,110,100,101,120, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 95, 95,116,111,115,116,114,105,110,103, 0, 4, 17, 0, 0, + 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,116,111,115,116,114,105,110, +103, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 95, 95,101,113, 0, 4, 16, 0, 0, + 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95, 99,111,109,112, 97,114,101, + 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101, +116,110, 97,109,101, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 15, 0, 0, 0, 0, 0, + 0, 0, 82,101,103,105,115,116,101,114, 72, 97,110,100,108,101, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +115,104,111,119, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,104,105,100,101, 0, 4, + 4, 0, 0, 0, 0, 0, 0, 0,109, 97,112, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0, 99,111,110,115,116,114,117, 99,116,111,114, 0, 4, 14, 0, 0, 0, 0, 0, + 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 4, 0, + 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, + 95,109,101,115,115, 97,103,101, 95,112,111,112,117,112, 0, 4, 14, 0, 0, 0, + 0, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, 69, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,112, 97, 99,107, 0, 4, 15, 0, 0, 0, 0, 0, 0, + 0,112,114,111,116,101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,100,111,102,105,108,101, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 82, + 71, 66, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 95, 71, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,112, 97, 99,107, 97,103,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,108,111, 97,100,101,100, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,105,117,112, +108,117, 97, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0,105,117,112,108,117, 97, 53, 49, 0, 4, 3, 0, 0, 0, + 0, 0, 0, 0, 95, 77, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 95, 80, 65, 67, + 75, 65, 71, 69, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 0, 27, 0, 0, 0, 0, 1, 7, 7, 35, 0, 0, 0,134, 0,192, 0,198, 0, 0, + 1,218, 64, 0, 0, 22, 0, 0,128, 30, 0,128, 0, 5, 65, 0, 0, 64, 1,128, + 1, 28,129, 0, 1, 23,128, 64, 2, 22,128, 1,128, 0, 1,128, 1, 69,193, 0, + 0,128, 1,128, 0, 92, 1, 0, 1, 29, 1, 0, 0, 30, 1, 0, 0, 22, 0, 4, +128, 5, 65, 0, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 65, 2, 22, 0, 2, +128, 5, 65, 1, 0,135, 64, 1, 0, 69,129, 1, 0, 70,193,193, 2,128, 1,128, + 1, 92,129, 0, 1, 7, 65, 1, 0, 94, 1, 0, 1, 22,128, 0,128, 5,129, 1, + 0, 6, 1, 66, 2, 30, 1, 0, 1, 30, 0,128, 0, 9, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0,240, 63, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,117,110,112, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,115, +101,108,102, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, + 0, 0, 0, 0, 69, 82, 82, 79, 82, 0, 0, 0, 0, 0, 35, 0, 0, 0, 10, 0, + 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, + 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 27, 0, 0, 0, 6, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, 34, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 34, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 1, 0, + 0, 0, 34, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 2, + 0, 0, 0, 34, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,116,101,109,112, 0, + 23, 0, 0, 0, 30, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,114,101,115,117, +108,116, 0, 28, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 0, 3, 0, 5, 15, 0, 0, 0,197, + 0, 0, 0,198, 0,128, 1,218, 64, 0, 0, 22,128, 0,128,197, 0, 0, 0, 10, + 1, 0, 0,201, 0, 1, 0,197, 0, 0, 0,198, 0,128, 1,154, 0, 0, 0, 22, + 64, 0,128,201, 64, 0, 1, 22, 0, 0,128,201, 64,128,128, 30, 0,128, 0, 2, + 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, +115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 15, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 35, 0, 0, 0, 37, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 99, 98, 0, 9, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, + 0, 53, 0, 0, 0, 0, 2, 0, 7, 21, 0, 0, 0,128, 0, 0, 0,195, 0,128, + 1, 5, 1, 0, 0, 64, 1, 0, 1,128, 1,128, 0, 28,129,128, 1,192, 0, 0, + 2,218, 0, 0, 0, 22, 0, 0,128,222, 0, 0, 1, 5, 1, 0, 0, 64, 1, 0, + 1,129, 65, 0, 0, 28,129,128, 1,128, 0, 0, 2,154, 64, 0, 0, 22, 0,252, +127, 3, 1, 0, 2, 30, 1, 0, 1, 22, 64,251,127, 30, 0,128, 0, 2, 0, 0, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103,101,116, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 0, 0, 0, 0, 21, 0, 0, + 0, 45, 0, 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, + 0, 48, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, + 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, + 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, + 0, 53, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106, +101, 99,116, 0, 0, 0, 0, 0, 20, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, +105,110,100,101,120, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,112, 0, 1, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, +118, 0, 2, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 59, 0, 0, 0, 79, 0, 0, 0, 0, 2, 0, 7, 67, 0, 0, 0,133, 0, + 0, 0,134, 64, 64, 1,192, 0,128, 0,156,128, 0, 1,197,128, 0, 0,198,128, +128, 1,218, 0, 0, 0, 22,192, 3,128,197,192, 0, 0, 0, 1, 0, 0,220,128, + 0, 1,218, 0, 0, 0, 22, 0, 1,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, + 0, 1, 87, 64, 65, 2, 22,128, 0,128, 5,129, 1, 0, 65,193, 1, 0, 28, 65, + 0, 1, 6, 65,128, 1, 30, 1, 0, 1, 22, 64, 10,128,197, 0, 2, 0, 0, 1, + 0, 0, 64, 1, 0, 1,220,128,128, 1,218, 64, 0, 0, 22,192, 3,128, 5,193, + 0, 0, 64, 1, 0, 0, 28,129, 0, 1, 26, 1, 0, 0, 22, 0, 1,128, 69, 1, + 1, 0,128, 1, 0, 2, 92,129, 0, 1, 87, 64,193, 2, 22,128, 0,128, 69,129, + 1, 0,129,193, 1, 0, 92, 65, 0, 1, 70, 65, 0, 2, 94, 1, 0, 1, 22,192, + 4,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 87, 64, 66, 2, 22, 0, + 1,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 64, 2, 22, 0, + 2,128, 5,129, 2, 0, 64, 1,128, 1, 28,129, 0, 1, 26, 1, 0, 0, 22, 64, + 0,128, 30, 1, 0, 1, 22,128, 0,128,222, 0, 0, 1, 22, 0, 0,128,222, 0, + 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115, +116,114,105,110,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,117,112,112,101,114, + 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107,115, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101, +116, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, + 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +101,114,114,111,114, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0,105,110,118, 97,108, +105,100, 32,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0, 71,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0, 71,101,116, 72, 97,110,100,108,101, 0, 0, 0, 0, 0, 67, 0, 0, 0, 60, + 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, 0, 61, + 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, 0, 62, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 66, 0, 0, 0, 66, + 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, 0, 68, + 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, 0, 70, + 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, + 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, + 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 73, + 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 74, 0, 0, 0, 76, + 0, 0, 0, 79, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, + 97,110,100,108,101, 0, 0, 0, 0, 0, 66, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 66, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 73, 78, 68, 69, 88, 0, 4, 0, 0, 0, 66, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 11, 0, 0, 0, 23, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 28, 0, 0, 0, 66, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 33, 0, + 0, 0, 45, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,104, 0, 59, 0, 0, + 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, + 0,109, 0, 0, 0, 0, 3, 0, 14, 78, 0, 0, 0,197, 0, 0, 0, 0, 1,128, + 0,220,128, 0, 1, 5, 1, 0, 0, 64, 1, 0, 1, 28,129, 0, 1, 69, 65, 0, + 0,128, 1, 0, 0, 92,129, 0, 1, 90, 1, 0, 0, 22, 0, 1,128,133, 1, 0, + 0,192, 1,128, 2,156,129, 0, 1, 87,128, 64, 3, 22,128, 0,128,133,193, 0, + 0,193, 1, 1, 0,156, 65, 0, 1, 87, 64,193, 1, 22, 64, 0,128, 23,128,193, + 1, 22, 0, 13,128,133,129, 1, 0,134,193, 65, 3,192, 1,128, 0,156,129, 0, + 1,197, 1, 2, 0,198,129,129, 3,218, 1, 0, 0, 22,128, 3,128, 6, 66,194, + 3, 26, 66, 0, 0, 22,192, 0,128, 69,130, 2, 0,128, 2, 0, 0, 92,130, 0, + 1, 6, 66,130, 3, 69,194, 2, 0,128, 2, 0, 0,192, 2, 0, 3, 0, 3, 0, + 4, 64, 3, 0, 1, 92, 66,128, 2, 73,129,128, 0, 22,128, 7,128, 5, 2, 3, + 0, 64, 2, 0, 1, 28,130, 0, 1, 23, 64, 67, 4, 22, 64, 2,128, 5,130, 3, + 0, 64, 2, 0, 1, 28,130, 0, 1, 69,194, 3, 0,128, 2, 0, 0,192, 2, 0, + 3, 0, 3, 0, 4, 92, 66, 0, 2, 73, 1,196, 0, 22,192, 3,128, 87,128, 65, + 2, 22,192, 0,128, 87, 64, 65, 2, 22, 64, 0,128, 23, 64, 68, 2, 22,128, 1, +128, 5,194, 3, 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2, 0, 1, 28, 66, 0, + 2, 73, 1,196, 0, 22,128, 0,128, 73,129,128, 0, 22, 0, 0,128, 73,129,128, + 0, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121, +112,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105, +100,103,101,116, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, 0, 4, 19, 0, 0, 0, + 0, 0, 0, 0,105,110,118, 97,108,105,100, 32,105,117,112, 32,104, 97,110,100, +108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, + 0, 0, 0, 0,117,112,112,101,114, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 13, + 0, 0, 0, 0, 0, 0, 0, 71,101,116, 67,108, 97,115,115, 78, 97,109,101, 0, + 4, 15, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, 97,108,108, 98, + 97, 99,107, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97, +110,100,108,101, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108, +101, 95,115,101,116,110, 97,109,101, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0, 83, +116,111,114,101, 65,116,116,114,105, 98,117,116,101, 0, 0, 4, 4, 0, 0, 0, + 0, 0, 0, 0,110,105,108, 0, 0, 0, 0, 0, 78, 0, 0, 0, 82, 0, 0, 0, + 82, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, + 84, 0, 0, 0, 84, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, + 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, + 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 86, 0, 0, 0, + 86, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, + 87, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, 0, 0, + 90, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 92, 0, 0, 0, + 92, 0, 0, 0, 92, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, + 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 95, 0, 0, 0, + 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, + 97, 0, 0, 0, 97, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, + 98, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 99, 0, 0, 0, +100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0, +100, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0, +101, 0, 0, 0,102, 0, 0, 0,102, 0, 0, 0,104, 0, 0, 0,105, 0, 0, 0, +107, 0, 0, 0,109, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 77, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0,116,105, 0, 3, 0, 0, 0, 77, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0,116,118, 0, 6, 0, 0, 0, 77, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 9, 0, 0, 0, 77, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 73, 78, 68, 69, 88, 0, 27, 0, 0, 0, 75, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 99, 98, 0, 29, 0, 0, 0, 75, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 32, 0, 0, 0, 45, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 54, 0, 0, 0, 60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 0, 0, 0,130, + 0, 0, 0, 0, 1, 0, 6, 19, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 92, +128, 0, 1, 90, 64, 0, 0, 22,192, 2,128,133, 64, 0, 0,134,128, 64, 1,193, +192, 0, 0, 5, 1, 1, 0, 64, 1, 0, 0, 28, 1, 0, 1,156,128, 0, 0,197, + 64, 1, 0, 0, 1, 0, 1, 64, 1, 0, 0,220, 64,128, 1,158, 0, 0, 1, 94, + 0, 0, 1, 30, 0,128, 0, 6, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, + 71,101,116, 78, 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,116,114, +105,110,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,102,111,114,109, 97,116, 0, + 4, 17, 0, 0, 0, 0, 0, 0, 0, 95, 73, 85, 80, 76, 85, 65, 95, 78, 65, 77, + 69, 40, 37,115, 41, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,116,111,115,116,114, +105,110,103, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 72, 97,110,100, +108,101, 0, 0, 0, 0, 0, 19, 0, 0, 0,123, 0, 0, 0,123, 0, 0, 0,123, + 0, 0, 0,124, 0, 0, 0,124, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, + 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,126, + 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,127, 0, 0, 0,129, + 0, 0, 0,130, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,118, + 0, 0, 0, 0, 0, 18, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109, +101, 0, 3, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 97,117, +116,111,110, 97,109,101, 0, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0,132, 0, 0, 0,136, 0, 0, 0, 0, 1, 0, 4, 6, + 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0,228, 0, 0, 0, 0, 0, 0, 0, 73, +192, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,133, 0, 0, 0,135, 0, 0, 0, 1, 1, + 0, 4, 6, 0, 0, 0, 68, 0, 0, 0, 75, 0,192, 0,192, 0, 0, 0, 93, 0, +128, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0, 99,111,110,115,116,114,117, 99,116,111,114, 0, 0, 0, 0, 0, 6, + 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, + 0, 0, 0,135, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 99,116,114,108, 0, 6, 0, 0, 0,133, 0, 0, 0,133, 0, 0, 0, +135, 0, 0, 0,135, 0, 0, 0,135, 0, 0, 0,136, 0, 0, 0, 1, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,138, 0, 0, 0,156, 0, 0, + 0, 0, 2, 0, 8, 31, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, 65, 0, + 0,156, 64,128, 1,133,128, 0, 0,192, 0, 0, 0,156,128, 0, 1,154, 64, 0, + 0, 22,192, 4,128,197,192, 0, 0, 5, 1, 1, 0, 6, 65, 65, 2, 64, 1,128, + 0, 28,129, 0, 1,198, 0,129, 1,218, 64, 0, 0, 22, 0, 0,128,197,128, 1, + 0, 10,129, 0, 0, 9,193,128,131, 9, 1, 0,132, 69, 1, 0, 0,128, 1, 0, + 2,193, 65, 2, 0, 92, 65,128, 1, 69,129, 2, 0,128, 1, 0, 0,192, 1, 0, + 2, 92, 65,128, 1, 30, 0, 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101,116, 0, + 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,117,112, +112,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 87,105,100,103,101,116, 0, 0, 0, 0, 0, 31, 0, + 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,142, 0, + 0, 0,142, 0, 0, 0,142, 0, 0, 0,143, 0, 0, 0,143, 0, 0, 0,145, 0, + 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, + 0, 0,146, 0, 0, 0,146, 0, 0, 0,147, 0, 0, 0,150, 0, 0, 0,150, 0, + 0, 0,150, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, + 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,155, 0, + 0, 0,156, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97, +110,100,108,101, 0, 0, 0, 0, 0, 30, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, + 0,116,121,112,101,110, 97,109,101, 0, 0, 0, 0, 0, 30, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 7, 0, 0, 0, 30, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 15, 0, 0, 0, 29, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 21, 0, + 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,166, 0, + 0, 0,168, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, + 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, + 0, 0, 0, 83,104,111,119, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110, +100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0,167, 0, 0, 0,167, 0, 0, 0, +167, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0,170, 0, 0, 0,172, 0, 0, 0, 0, 1, 0, 3, 4, + 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72,105,100,101, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, + 0,171, 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0,172, 0, 0, 0, 1, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 0, 0, 0, +176, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, + 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0, 77, 97,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 4, 0, 0, 0,175, 0, 0, 0,175, 0, 0, 0,175, 0, 0, + 0,176, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106, +101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0,178, 0, 0, 0,189, 0, 0, 0, 0, 2, 0, 7, 23, 0, 0, 0, +139, 0, 64, 0, 0, 1,128, 0,156,128,128, 1,202,128, 0, 0,201, 0,128,128, +201,128, 0,129, 5,193, 0, 0, 64, 1, 0, 1,129, 1, 1, 0, 28, 65,128, 1, + 5,193, 0, 0, 64, 1,128, 1,129, 65, 1, 0, 28, 65,128, 1, 5,129, 1, 0, + 64, 1, 0, 1,128, 1,128, 1, 28, 65,128, 1, 11,193,193, 1,128, 1,128, 0, + 28, 65,128, 1,158, 0, 0, 1, 30, 0,128, 0, 8, 0, 0, 0, 4, 14, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 83,101,116, 87,105,100,103,101,116, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 0, 0, 0, + 0, 23, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,180, 0, 0, + 0,181, 0, 0, 0,182, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,184, 0, 0, + 0,184, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, + 0,186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,187, 0, 0, + 0,187, 0, 0, 0,187, 0, 0, 0,188, 0, 0, 0,189, 0, 0, 0, 4, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 3, 0, + 0, 0, 22, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, + 0, 6, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,191, 0, 0, 0,203, 0, 0, 0, 0, 2, 0, 12, 25, 0, 0, 0,134, 0, 64, + 0,197, 64, 0, 0, 0, 1,128, 0,220, 0, 1, 1, 22, 0, 4,128, 5,130, 0, + 0, 64, 2, 0, 3, 28,130, 0, 1, 23,192, 64, 4, 22,128, 2,128, 5, 2, 1, + 0, 64, 2,128, 3, 28,130, 0, 1, 23, 64, 65, 4, 22, 64, 1,128, 5,130, 1, + 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2,128, 3, 28, 66, 0, 2, 22, 0, 0, +128,137,192, 1, 3,225,128, 0, 0, 22, 0,251,127, 30, 0,128, 0, 7, 0, 0, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,112, 97,105,114,115, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,116,121,112,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101, +114, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100, +108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,115,101,116, 0, 0, + 0, 0, 0, 25, 0, 0, 0,192, 0, 0, 0,193, 0, 0, 0,193, 0, 0, 0,193, + 0, 0, 0,193, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, + 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, + 0, 0, 0,194, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, + 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,200, 0, 0, 0,193, 0, 0, 0,201, + 0, 0, 0,203, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, + 98,106,101, 99,116, 0, 0, 0, 0, 0, 24, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 24, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0,104, 97,110,100,108,101, 0, 1, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32,103,101,110,101,114, 97,116,111,114, 41, + 0, 4, 0, 0, 0, 24, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111, +114, 32,115,116, 97,116,101, 41, 0, 4, 0, 0, 0, 24, 0, 0, 0, 14, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, 0, 4, + 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 5, 0, 0, + 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 5, 0, 0, 0, 22, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,218, 0, 0, 0,227, + 0, 0, 0, 0, 2, 0, 11, 28, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, + 65, 0, 0,156,128,128, 1,197,128, 0, 0,198,192,192, 1, 0, 1,128, 0,220, +128, 0, 1, 1, 1, 1, 0, 64, 1,128, 1,129, 1, 1, 0, 32, 1, 2,128, 5, + 66, 1, 0, 70,194,129, 0, 28,130, 0, 1, 23,128, 65, 4, 22,192, 0,128, 5, +194, 1, 0, 64, 2, 0, 1,134,194,129, 0, 28, 66,128, 1, 31, 65,253,127, 5, + 1, 2, 0, 6, 65, 66, 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, 1, 30, + 0,128, 0, 10, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103, +101,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 5, 0, 0, 0, 0, + 0, 0, 0,103,101,116,110, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115, +101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 0, 0, 0, 0, 28, 0, 0, + 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,220, 0, 0, + 0,220, 0, 0, 0,220, 0, 0, 0,220, 0, 0, 0,221, 0, 0, 0,221, 0, 0, + 0,221, 0, 0, 0,221, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,222, 0, 0, + 0,222, 0, 0, 0,222, 0, 0, 0,223, 0, 0, 0,223, 0, 0, 0,223, 0, 0, + 0,223, 0, 0, 0,221, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,226, 0, 0, + 0,226, 0, 0, 0,226, 0, 0, 0,227, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 27, + 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 8, 0, 0, 0, 27, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110,100,101,120, 41, + 0, 11, 0, 0, 0, 22, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111, +114, 32,108,105,109,105,116, 41, 0, 11, 0, 0, 0, 22, 0, 0, 0, 11, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 11, 0, 0, 0, + 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 12, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,238, 0, 0, 0,252, 0, + 0, 0, 0, 2, 0, 10, 52, 0, 0, 0,128, 0, 0, 0,219, 64,128, 0, 22, 0, + 0,128,193, 0, 0, 0, 21,192, 0, 1,133, 64, 0, 0,154, 0, 0, 0, 22,128, + 0,128,133, 64, 0, 0,137, 0, 0,129, 22,192, 9,128,133,192, 0, 0,202,192, + 0, 0,201, 64, 65,130,201,192, 65,131,201, 64, 66,132,156,128, 0, 1,197,128, + 2, 0, 10, 1, 1, 0, 9, 1,195,133, 9, 1,195,134, 9, 1, 0,129, 9,129, + 67,131,220,128, 0, 1, 5,193, 3, 0, 74,193, 0, 1,128, 1,128, 1,192, 1, + 0, 1, 73, 65, 68,136, 73,193, 68,137, 73, 65, 69,138, 98, 65, 0, 1, 28,129, + 0, 1, 69,129, 5, 0,138, 1,129, 0,192, 1, 0, 2,137,193, 69,130,137,129, + 0,140,137,129,128,140,137,129, 0,141,162, 65,128, 0, 92,129, 0, 1,199, 64, + 0, 0,139,193,198, 2, 5, 2, 7, 0, 69, 2, 7, 0,156, 65, 0, 2,139, 65, +199, 2,156, 65, 0, 1,131, 1, 0, 3,135, 65, 0, 0, 30, 0,128, 0, 30, 0, + 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 20, 0, 0, 0, 0, 0, 0, + 0,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112,117,112, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 98,117,116,116,111,110, 0, 4, 6, 0, 0, 0, 0, 0, 0, + 0,116,105,116,108,101, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 79,107, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,115,105,122,101, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0, 54, 48, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 4, 44, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, 95,109,101,115,115, + 97,103,101, 95,112,111,112,117,112, 32, 61, 32,110,105,108, 59, 32,114,101,116, +117,114,110, 32,105,117,112, 46, 67, 76, 79, 83, 69, 0, 4, 10, 0, 0, 0, 0, + 0, 0, 0,109,117,108,116,105,108,105,110,101, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,101,120,112, 97,110,100, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 89, 69, + 83, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,114,101, 97,100,111,110,108,121, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0, 51, 48, 48,120, 49, 53, 48, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0,118, 98,111,120, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, + 97,108,105,103,110,109,101,110,116, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 65, + 67, 69, 78, 84, 69, 82, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,114,103, +105,110, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 49, 48,120, 49, 48, 0, 4, 4, + 0, 0, 0, 0, 0, 0, 0,103, 97,112, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, + 49, 48, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108,111,103, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 69,114,114,111,114, 32, 77,101,115,115, 97,103, +101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,100,101,102, 97,117,108,116,101,115, + 99, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,100,101,102, 97,117,108,116,101,110, +116,101,114, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,115,116, 97,114,116,102,111, + 99,117,115, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0, 67, 69, 78, 84, 69, 82, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 0, 0, 0, 0, 52, 0, 0, 0, +239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0, +240, 0, 0, 0,240, 0, 0, 0,240, 0, 0, 0,241, 0, 0, 0,241, 0, 0, 0, +241, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0, +243, 0, 0, 0,243, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0, +244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,245, 0, 0, 0, +245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0, +245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0, +246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0, +246, 0, 0, 0,246, 0, 0, 0,247, 0, 0, 0,248, 0, 0, 0,248, 0, 0, 0, +248, 0, 0, 0,248, 0, 0, 0,249, 0, 0, 0,249, 0, 0, 0,250, 0, 0, 0, +250, 0, 0, 0,252, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, +101,114,114, 0, 0, 0, 0, 0, 51, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, +116,114, 97, 99,101, 98, 97, 99,107, 0, 0, 0, 0, 0, 51, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 98,116, 0, 17, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0,109,108, 0, 24, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0,118, 98, 0, 33, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0,100,103, 0, 42, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,254, 0, 0, 0,254, 0, 0, 0, 0, 0, 7, 2, 2, 0, + 0, 0, 30, 0, 0, 1, 30, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 0,254, 0, 0, 0,254, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 13, 1, 0, 0, 0, 2, 0, 6, 29, 0, + 0, 0, 26, 64, 0, 0, 22,192, 0,128,133, 0, 0, 0,192, 0,128, 0,156, 64, + 0, 1, 30, 0,128, 0,133, 64, 0, 0,197,128, 0, 0, 0, 1, 0, 0,220, 0, + 0, 1,156,128, 0, 0,198,192, 64, 1,218, 64, 0, 0, 22, 0, 1,128,197, 0, + 0, 0, 6, 1, 65, 1,220, 64, 0, 1, 30, 0,128, 0, 22, 0, 2,128,197, 64, + 1, 0,198,128,193, 1, 0, 1, 0, 1, 65,193, 0, 0,220, 64,128, 1,197,192, + 1, 0, 0, 1, 0, 1,221, 0, 0, 1,222, 0, 0, 0, 30, 0,128, 0, 8, 0, + 0, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, 69, 83, + 83, 65, 71, 69, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,112, 97, 99,107, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,112, 99, 97,108,108, 0, 3, 0, 0, 0, 0, 0, + 0,240, 63, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, 6, 0, 0, 0, 0, 0, 0, + 0,116, 97, 98,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114,101,109,111, +118,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,117,110,112, 97, 99,107, 0, 0, + 0, 0, 0, 29, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 0, 0, 2, + 1, 0, 0, 2, 1, 0, 0, 3, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 5, + 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 6, 1, 0, 0, 6, 1, 0, 0, 6, + 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, 8, 1, 0, 0, 8, + 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, + 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 13, + 1, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,102, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,101,114,114, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, 11, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 1, 0, + 0, 15, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, 64, 0, + 0,192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, 0,128, + 0, 2, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,112,114,111,116,101, 99, +116,101,100, 99, 97,108,108, 95, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,108,111, + 97,100,115,116,114,105,110,103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 15, 1, 0, + 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, + 0, 15, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 1, 0, 0, 16, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, + 64, 0, 0,192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, + 0,128, 0, 2, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,112,114,111,116, +101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +108,111, 97,100,102,105,108,101, 0, 0, 0, 0, 0, 7, 0, 0, 0, 16, 1, 0, + 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, + 0, 16, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,102, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 1, 0, 0, 20, 1, 0, 0, 0, 3, 0, 8, 9, 0, 0, 0,197, 0, 0, 0,198, + 64,192, 1, 1,129, 0, 0, 78, 1,128,129,142, 65,128,129,206,129,128,129,221, + 0,128, 2,222, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, +102,111,114,109, 97,116, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 37,100, 32, 37, +100, 32, 37,100, 0, 3, 0, 0, 0, 0, 0,224,111, 64, 0, 0, 0, 0, 9, 0, + 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, + 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 20, 1, 0, 0, 3, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,114, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0,103, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 98, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, +114, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 9, 0, 0, 0, + 37, 0, 0, 0, 29, 0, 0, 0, 53, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, + 55, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, + 56, 0, 0, 0, 79, 0, 0, 0,109, 0, 0, 0,111, 0, 0, 0,111, 0, 0, 0, +111, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0, +112, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0, +113, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0, +114, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0, +115, 0, 0, 0,130, 0, 0, 0,122, 0, 0, 0,136, 0, 0, 0,132, 0, 0, 0, +156, 0, 0, 0,138, 0, 0, 0,162, 0, 0, 0,163, 0, 0, 0,163, 0, 0, 0, +164, 0, 0, 0,166, 0, 0, 0,168, 0, 0, 0,166, 0, 0, 0,170, 0, 0, 0, +172, 0, 0, 0,170, 0, 0, 0,174, 0, 0, 0,176, 0, 0, 0,174, 0, 0, 0, +178, 0, 0, 0,189, 0, 0, 0,178, 0, 0, 0,191, 0, 0, 0,203, 0, 0, 0, +191, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0, +214, 0, 0, 0,215, 0, 0, 0,215, 0, 0, 0,216, 0, 0, 0,218, 0, 0, 0, +227, 0, 0, 0,218, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0, +229, 0, 0, 0,236, 0, 0, 0,236, 0, 0, 0,252, 0, 0, 0,238, 0, 0, 0, +254, 0, 0, 0,254, 0, 0, 0, 13, 1, 0, 0, 0, 1, 0, 0, 15, 1, 0, 0, + 15, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 20, 1, 0, 0, 18, 1, 0, 0, + 24, 1, 0, 0, 24, 1, 0, 0, 24, 1, 0, 0, 24, 1, 0, 0, 25, 1, 0, 0, + 25, 1, 0, 0, 25, 1, 0, 0, 25, 1, 0, 0, 25, 1, 0, 0, 26, 1, 0, 0, + 26, 1, 0, 0, 26, 1, 0, 0, 26, 1, 0, 0, 26, 1, 0, 0, 27, 1, 0, 0, + 27, 1, 0, 0, 27, 1, 0, 0, 28, 1, 0, 0, 28, 1, 0, 0, 29, 1, 0, 0, + 3, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,119,105,100,103,101,116, 95,103, +101,116,116, 97, 98,108,101, 0, 7, 0, 0, 0,113, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,103,101,116,116, 97, 98,108,101, + 0, 16, 0, 0, 0,113, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,105,104, 97, +110,100,108,101, 95,115,101,116,116, 97, 98,108,101, 0, 17, 0, 0, 0,113, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/iuplua_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/iuplua_le64w.loh b/iup/srclua5/loh/iuplua_le64w.loh new file mode 100755 index 0000000..2a2302b --- /dev/null +++ b/iup/srclua5/loh/iuplua_le64w.loh @@ -0,0 +1,531 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/iuplua_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/iuplua_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,105,117,112,108,117, 97, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 7, 95, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 36, 0, 0, 0, + 7, 64, 0, 0, 36, 64, 0, 0, 7,128, 0, 0, 36,128, 0, 0, 69,192, 0, 0, +129, 0, 1, 0, 92, 64, 0, 1, 69, 64, 1, 0,129, 0, 1, 0,193,128, 1, 0, + 0, 1, 0, 0, 92, 64, 0, 2,100,192, 0, 0,164, 0, 1, 0,197,192, 0, 0, + 1,193, 1, 0,220, 64, 0, 1,197, 64, 1, 0, 1,193, 1, 0, 65,129, 1, 0, +128, 1,128, 0,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 1, 2, 0, +128, 1, 0, 1,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65, 65, 2, 0, +133,129, 2, 0,220, 64, 0, 2,197, 64, 1, 0, 1,193, 1, 0, 65,193, 2, 0, +133, 1, 3, 0,220, 64, 0, 2,228, 64, 1, 0,199, 64, 3, 0,228,128, 1, 0, +199,128, 3, 0,228,192, 1, 0,199,192, 3, 0,202, 64, 0, 0, 10, 1, 0, 0, +201, 0,129,136,199, 0, 4, 0,197, 0, 4, 0, 36, 1, 2, 0,201, 0, 1,137, +197, 0, 4, 0, 36, 65, 2, 0,201, 0,129,137,197, 0, 4, 0, 36,129, 2, 0, +201, 0, 1,138,197, 0, 4, 0, 36,193, 2, 0,201, 0,129,138,197, 0, 4, 0, + 36, 1, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 4, 0, 65, 1, 1, 0, +220, 64,128, 1,202, 64, 0, 0, 5, 1, 4, 0,201, 0,129,140,199, 0, 6, 0, +197, 0, 6, 0, 36, 65, 3, 0,201, 0, 1,139,197,192, 5, 0, 5, 1, 6, 0, + 65, 1, 1, 0,220, 64,128, 1,195, 0,128, 1,199,128, 6, 0,228,128, 3, 0, +199,192, 6, 0,228,192, 3, 0,199, 0, 7, 0,228, 0, 4, 0,199, 64, 7, 0, +228, 64, 4, 0,199,128, 7, 0,228,128, 4, 0,199,192, 7, 0,228,192, 4, 0, +199, 0, 8, 0, 30, 0,128, 0, 33, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 67, 97,108,108, 77,101,116,104,111,100, 0, 4, 17, 0, 0, 0, 0, + 0, 0, 0, 82,101,103,105,115,116,101,114, 67, 97,108,108, 98, 97, 99,107, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 78,101,119, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 77,101,116,104, +111,100, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 95, 95,105,110,100,101,120, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0, 95, 95,110,101,119,105,110,100,101,120, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0, 95, 95,116,111,115,116,114,105,110,103, 0, + 4, 17, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,116,111,115, +116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 95, 95,101,113, 0, + 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95, 99,111,109, +112, 97,114,101, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108, +101, 95,115,101,116,110, 97,109,101, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 15, 0, + 0, 0, 0, 0, 0, 0, 82,101,103,105,115,116,101,114, 72, 97,110,100,108,101, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,115,104,111,119, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,104,105, +100,101, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,109, 97,112, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0, 99,111,110,115,116,114,117, 99,116,111,114, 0, 4, 14, 0, + 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0,101, +114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112,117,112, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, 69, 83, 83, 65, 71, + 69, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,112, 97, 99,107, 0, 4, 15, 0, 0, + 0, 0, 0, 0, 0,112,114,111,116,101, 99,116,101,100, 99, 97,108,108, 95, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,100,111,102,105,108,101, 0, 4, 4, 0, 0, 0, 0, + 0, 0, 0, 82, 71, 66, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, + 0, 0, 0, 27, 0, 0, 0, 0, 1, 7, 7, 35, 0, 0, 0,134, 0,192, 0,198, + 0, 0, 1,218, 64, 0, 0, 22, 0, 0,128, 30, 0,128, 0, 5, 65, 0, 0, 64, + 1,128, 1, 28,129, 0, 1, 23,128, 64, 2, 22,128, 1,128, 0, 1,128, 1, 69, +193, 0, 0,128, 1,128, 0, 92, 1, 0, 1, 29, 1, 0, 0, 30, 1, 0, 0, 22, + 0, 4,128, 5, 65, 0, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 65, 2, 22, + 0, 2,128, 5, 65, 1, 0,135, 64, 1, 0, 69,129, 1, 0, 70,193,193, 2,128, + 1,128, 1, 92,129, 0, 1, 7, 65, 1, 0, 94, 1, 0, 1, 22,128, 0,128, 5, +129, 1, 0, 6, 1, 66, 2, 30, 1, 0, 1, 30, 0,128, 0, 9, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112, +101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,117,110,112, 97, 99,107, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,115,101,108,102, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0,100,111,115,116,114,105,110,103, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0, 69, 82, 82, 79, 82, 0, 0, 0, 0, 0, 35, 0, 0, 0, + 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, + 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, + 23, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 27, 0, 0, 0, + 6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, + 0, 34, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 34, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, + 1, 0, 0, 0, 34, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, + 0, 2, 0, 0, 0, 34, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,116,101,109, +112, 0, 23, 0, 0, 0, 30, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,114,101, +115,117,108,116, 0, 28, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 0, 3, 0, 5, 15, 0, 0, + 0,197, 0, 0, 0,198, 0,128, 1,218, 64, 0, 0, 22,128, 0,128,197, 0, 0, + 0, 10, 1, 0, 0,201, 0, 1, 0,197, 0, 0, 0,198, 0,128, 1,154, 0, 0, + 0, 22, 64, 0,128,201, 64, 0, 1, 22, 0, 0,128,201, 64,128,128, 30, 0,128, + 0, 2, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 15, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 35, 0, 0, 0, 37, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 99, 98, 0, 9, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, + 0, 0, 0, 53, 0, 0, 0, 0, 2, 0, 7, 21, 0, 0, 0,128, 0, 0, 0,195, + 0,128, 1, 5, 1, 0, 0, 64, 1, 0, 1,128, 1,128, 0, 28,129,128, 1,192, + 0, 0, 2,218, 0, 0, 0, 22, 0, 0,128,222, 0, 0, 1, 5, 1, 0, 0, 64, + 1, 0, 1,129, 65, 0, 0, 28,129,128, 1,128, 0, 0, 2,154, 64, 0, 0, 22, + 0,252,127, 3, 1, 0, 2, 30, 1, 0, 1, 22, 64,251,127, 30, 0,128, 0, 2, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103,101,116, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 0, 0, 0, 0, 21, + 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, + 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, + 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, + 0, 0, 0, 53, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, + 98,106,101, 99,116, 0, 0, 0, 0, 0, 20, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,112, 0, 1, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,118, 0, 2, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 59, 0, 0, 0, 79, 0, 0, 0, 0, 2, 0, 7, 67, 0, 0, 0, +133, 0, 0, 0,134, 64, 64, 1,192, 0,128, 0,156,128, 0, 1,197,128, 0, 0, +198,128,128, 1,218, 0, 0, 0, 22,192, 3,128,197,192, 0, 0, 0, 1, 0, 0, +220,128, 0, 1,218, 0, 0, 0, 22, 0, 1,128, 5, 1, 1, 0, 64, 1,128, 1, + 28,129, 0, 1, 87, 64, 65, 2, 22,128, 0,128, 5,129, 1, 0, 65,193, 1, 0, + 28, 65, 0, 1, 6, 65,128, 1, 30, 1, 0, 1, 22, 64, 10,128,197, 0, 2, 0, + 0, 1, 0, 0, 64, 1, 0, 1,220,128,128, 1,218, 64, 0, 0, 22,192, 3,128, + 5,193, 0, 0, 64, 1, 0, 0, 28,129, 0, 1, 26, 1, 0, 0, 22, 0, 1,128, + 69, 1, 1, 0,128, 1, 0, 2, 92,129, 0, 1, 87, 64,193, 2, 22,128, 0,128, + 69,129, 1, 0,129,193, 1, 0, 92, 65, 0, 1, 70, 65, 0, 2, 94, 1, 0, 1, + 22,192, 4,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 87, 64, 66, 2, + 22, 0, 1,128, 5, 1, 1, 0, 64, 1,128, 1, 28,129, 0, 1, 23, 0, 64, 2, + 22, 0, 2,128, 5,129, 2, 0, 64, 1,128, 1, 28,129, 0, 1, 26, 1, 0, 0, + 22, 64, 0,128, 30, 1, 0, 1, 22,128, 0,128,222, 0, 0, 1, 22, 0, 0,128, +222, 0, 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,117,112,112, +101,114, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, +115, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105,100, +103,101,116, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,101,114,114,111,114, 0, 4, 19, 0, 0, 0, 0, 0, 0, 0,105,110,118, + 97,108,105,100, 32,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0, 71,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 10, 0, 0, 0, 0, + 0, 0, 0, 71,101,116, 72, 97,110,100,108,101, 0, 0, 0, 0, 0, 67, 0, 0, + 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 0, 61, 0, 0, + 0, 61, 0, 0, 0, 61, 0, 0, 0, 61, 0, 0, 0, 62, 0, 0, 0, 62, 0, 0, + 0, 62, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, + 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, + 0, 63, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 64, 0, 0, 0, 66, 0, 0, + 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 67, 0, 0, 0, 67, 0, 0, + 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, + 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, + 0, 69, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 70, 0, 0, 0, 70, 0, 0, + 0, 70, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, + 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, 0, 71, 0, 0, + 0, 71, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, + 0, 73, 0, 0, 0, 73, 0, 0, 0, 73, 0, 0, 0, 74, 0, 0, 0, 74, 0, 0, + 0, 76, 0, 0, 0, 79, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 66, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 66, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 73, 78, 68, 69, 88, 0, 4, 0, 0, 0, 66, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 11, 0, 0, 0, 23, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 28, 0, 0, + 0, 66, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, + 33, 0, 0, 0, 45, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,104, 0, 59, + 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, + 0, 0, 0,109, 0, 0, 0, 0, 3, 0, 14, 78, 0, 0, 0,197, 0, 0, 0, 0, + 1,128, 0,220,128, 0, 1, 5, 1, 0, 0, 64, 1, 0, 1, 28,129, 0, 1, 69, + 65, 0, 0,128, 1, 0, 0, 92,129, 0, 1, 90, 1, 0, 0, 22, 0, 1,128,133, + 1, 0, 0,192, 1,128, 2,156,129, 0, 1, 87,128, 64, 3, 22,128, 0,128,133, +193, 0, 0,193, 1, 1, 0,156, 65, 0, 1, 87, 64,193, 1, 22, 64, 0,128, 23, +128,193, 1, 22, 0, 13,128,133,129, 1, 0,134,193, 65, 3,192, 1,128, 0,156, +129, 0, 1,197, 1, 2, 0,198,129,129, 3,218, 1, 0, 0, 22,128, 3,128, 6, + 66,194, 3, 26, 66, 0, 0, 22,192, 0,128, 69,130, 2, 0,128, 2, 0, 0, 92, +130, 0, 1, 6, 66,130, 3, 69,194, 2, 0,128, 2, 0, 0,192, 2, 0, 3, 0, + 3, 0, 4, 64, 3, 0, 1, 92, 66,128, 2, 73,129,128, 0, 22,128, 7,128, 5, + 2, 3, 0, 64, 2, 0, 1, 28,130, 0, 1, 23, 64, 67, 4, 22, 64, 2,128, 5, +130, 3, 0, 64, 2, 0, 1, 28,130, 0, 1, 69,194, 3, 0,128, 2, 0, 0,192, + 2, 0, 3, 0, 3, 0, 4, 92, 66, 0, 2, 73, 1,196, 0, 22,192, 3,128, 87, +128, 65, 2, 22,192, 0,128, 87, 64, 65, 2, 22, 64, 0,128, 23, 64, 68, 2, 22, +128, 1,128, 5,194, 3, 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2, 0, 1, 28, + 66, 0, 2, 73, 1,196, 0, 22,128, 0,128, 73,129,128, 0, 22, 0, 0,128, 73, +129,128, 0, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +116,121,112,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, + 87,105,100,103,101,116, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108, +101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, 0, 4, 19, 0, + 0, 0, 0, 0, 0, 0,105,110,118, 97,108,105,100, 32,105,117,112, 32,104, 97, +110,100,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,117,112,112,101,114, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 4, 13, 0, 0, 0, 0, 0, 0, 0, 71,101,116, 67,108, 97,115,115, 78, 97,109, +101, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, 97,108, +108, 98, 97, 99,107, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101, +116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32, +104, 97,110,100,108,101, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110, +100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 15, 0, 0, 0, 0, 0, 0, + 0, 83,116,111,114,101, 65,116,116,114,105, 98,117,116,101, 0, 0, 4, 4, 0, + 0, 0, 0, 0, 0, 0,110,105,108, 0, 0, 0, 0, 0, 78, 0, 0, 0, 82, 0, + 0, 0, 82, 0, 0, 0, 82, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 83, 0, + 0, 0, 84, 0, 0, 0, 84, 0, 0, 0, 84, 0, 0, 0, 85, 0, 0, 0, 85, 0, + 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, + 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 85, 0, 0, 0, 86, 0, 0, 0, 86, 0, + 0, 0, 86, 0, 0, 0, 86, 0, 0, 0, 87, 0, 0, 0, 87, 0, 0, 0, 87, 0, + 0, 0, 87, 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, 0, 89, 0, 0, 0, 89, 0, + 0, 0, 90, 0, 0, 0, 91, 0, 0, 0, 91, 0, 0, 0, 92, 0, 0, 0, 92, 0, + 0, 0, 92, 0, 0, 0, 92, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, + 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 94, 0, 0, 0, 95, 0, 0, 0, 95, 0, + 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, 0, 0, 96, 0, + 0, 0, 97, 0, 0, 0, 97, 0, 0, 0, 97, 0, 0, 0, 98, 0, 0, 0, 98, 0, + 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 98, 0, 0, 0, 99, 0, 0, 0, 99, 0, + 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, 0, 0,100, 0, + 0, 0,100, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, 0, 0,101, 0, + 0, 0,101, 0, 0, 0,102, 0, 0, 0,102, 0, 0, 0,104, 0, 0, 0,105, 0, + 0, 0,107, 0, 0, 0,109, 0, 0, 0, 10, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0,105,110,100,101,120, 0, 0, 0, 0, 0, 77, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 77, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0,116,105, 0, 3, 0, 0, 0, 77, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0,116,118, 0, 6, 0, 0, 0, 77, 0, 0, 0, 7, + 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 9, 0, 0, 0, 77, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 73, 78, 68, 69, 88, 0, 27, 0, 0, 0, + 75, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 99, 98, 0, 29, 0, 0, 0, 75, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99, 0, 32, 0, 0, 0, + 45, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, 97,109,101, 0, 54, 0, 0, + 0, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,122, 0, 0, + 0,130, 0, 0, 0, 0, 1, 0, 6, 19, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, + 0, 92,128, 0, 1, 90, 64, 0, 0, 22,192, 2,128,133, 64, 0, 0,134,128, 64, + 1,193,192, 0, 0, 5, 1, 1, 0, 64, 1, 0, 0, 28, 1, 0, 1,156,128, 0, + 0,197, 64, 1, 0, 0, 1, 0, 1, 64, 1, 0, 0,220, 64,128, 1,158, 0, 0, + 1, 94, 0, 0, 1, 30, 0,128, 0, 6, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 71,101,116, 78, 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115, +116,114,105,110,103, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,102,111,114,109, 97, +116, 0, 4, 17, 0, 0, 0, 0, 0, 0, 0, 95, 73, 85, 80, 76, 85, 65, 95, 78, + 65, 77, 69, 40, 37,115, 41, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,116,111,115, +116,114,105,110,103, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 72, 97, +110,100,108,101, 0, 0, 0, 0, 0, 19, 0, 0, 0,123, 0, 0, 0,123, 0, 0, + 0,123, 0, 0, 0,124, 0, 0, 0,124, 0, 0, 0,125, 0, 0, 0,125, 0, 0, + 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, 0,125, 0, 0, + 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,126, 0, 0, 0,127, 0, 0, + 0,129, 0, 0, 0,130, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, + 0,118, 0, 0, 0, 0, 0, 18, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110, + 97,109,101, 0, 3, 0, 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 97,117,116,111,110, 97,109,101, 0, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,132, 0, 0, 0,136, 0, 0, 0, 0, 1, 0, + 4, 6, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0,228, 0, 0, 0, 0, 0, 0, + 0, 73,192, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,133, 0, 0, 0,135, 0, 0, 0, + 1, 1, 0, 4, 6, 0, 0, 0, 68, 0, 0, 0, 75, 0,192, 0,192, 0, 0, 0, + 93, 0,128, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0, 99,111,110,115,116,114,117, 99,116,111,114, 0, 0, 0, 0, + 0, 6, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, 0,134, 0, 0, + 0,134, 0, 0, 0,135, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 6, 0, 0, 0,133, 0, 0, 0,133, 0, + 0, 0,135, 0, 0, 0,135, 0, 0, 0,135, 0, 0, 0,136, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,138, 0, 0, 0,156, + 0, 0, 0, 0, 2, 0, 8, 31, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, + 65, 0, 0,156, 64,128, 1,133,128, 0, 0,192, 0, 0, 0,156,128, 0, 1,154, + 64, 0, 0, 22,192, 4,128,197,192, 0, 0, 5, 1, 1, 0, 6, 65, 65, 2, 64, + 1,128, 0, 28,129, 0, 1,198, 0,129, 1,218, 64, 0, 0, 22, 0, 0,128,197, +128, 1, 0, 10,129, 0, 0, 9,193,128,131, 9, 1, 0,132, 69, 1, 0, 0,128, + 1, 0, 2,193, 65, 2, 0, 92, 65,128, 1, 69,129, 2, 0,128, 1, 0, 0,192, + 1, 0, 2, 92, 65,128, 1, 30, 0, 0, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 87,105,100,103,101, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,117,112, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +117,112,112,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 87,105,100,103,101,116, 0, 0, 0, 0, 0, + 31, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0,140, 0, 0, 0, +142, 0, 0, 0,142, 0, 0, 0,142, 0, 0, 0,143, 0, 0, 0,143, 0, 0, 0, +145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0,145, 0, 0, 0, +145, 0, 0, 0,146, 0, 0, 0,146, 0, 0, 0,147, 0, 0, 0,150, 0, 0, 0, +150, 0, 0, 0,150, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0,151, 0, 0, 0, +151, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0,152, 0, 0, 0, +155, 0, 0, 0,156, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 30, 0, 0, 0, 9, 0, 0, 0, 0, + 0, 0, 0,116,121,112,101,110, 97,109,101, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 7, 0, 0, 0, 30, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 15, 0, 0, + 0, 29, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, + 21, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +166, 0, 0, 0,168, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0, +134, 64, 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, + 0, 0, 0, 0, 0, 83,104,111,119, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, + 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0,167, 0, 0, 0,167, 0, + 0, 0,167, 0, 0, 0,168, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0,170, 0, 0, 0,172, 0, 0, 0, 0, 1, 0, + 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, 64, 0, 92, 64, 0, 1, 30, 0,128, + 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 72,105,100,101, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, + 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0,171, 0, 0, 0,172, 0, 0, 0, 1, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,174, 0, + 0, 0,176, 0, 0, 0, 0, 1, 0, 3, 4, 0, 0, 0, 69, 0, 0, 0,134, 64, + 64, 0, 92, 64, 0, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, + 0, 0, 0, 77, 97,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0,175, 0, 0, 0,175, 0, 0, 0,175, + 0, 0, 0,176, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, + 98,106,101, 99,116, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0,178, 0, 0, 0,189, 0, 0, 0, 0, 2, 0, 7, 23, 0, + 0, 0,139, 0, 64, 0, 0, 1,128, 0,156,128,128, 1,202,128, 0, 0,201, 0, +128,128,201,128, 0,129, 5,193, 0, 0, 64, 1, 0, 1,129, 1, 1, 0, 28, 65, +128, 1, 5,193, 0, 0, 64, 1,128, 1,129, 65, 1, 0, 28, 65,128, 1, 5,129, + 1, 0, 64, 1, 0, 1,128, 1,128, 1, 28, 65,128, 1, 11,193,193, 1,128, 1, +128, 0, 28, 65,128, 1,158, 0, 0, 1, 30, 0,128, 0, 8, 0, 0, 0, 4, 14, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 87,105,100,103,101,116, 0, 4, 14, 0, 0, + 0, 0, 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 0, + 0, 0, 0, 23, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,179, 0, 0, 0,180, + 0, 0, 0,181, 0, 0, 0,182, 0, 0, 0,184, 0, 0, 0,184, 0, 0, 0,184, + 0, 0, 0,184, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, 0, 0, 0,185, + 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,186, 0, 0, 0,187, + 0, 0, 0,187, 0, 0, 0,187, 0, 0, 0,188, 0, 0, 0,189, 0, 0, 0, 4, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, + 3, 0, 0, 0, 22, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, + 99,116, 0, 6, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0,191, 0, 0, 0,203, 0, 0, 0, 0, 2, 0, 12, 25, 0, 0, 0,134, + 0, 64, 0,197, 64, 0, 0, 0, 1,128, 0,220, 0, 1, 1, 22, 0, 4,128, 5, +130, 0, 0, 64, 2, 0, 3, 28,130, 0, 1, 23,192, 64, 4, 22,128, 2,128, 5, + 2, 1, 0, 64, 2,128, 3, 28,130, 0, 1, 23, 64, 65, 4, 22, 64, 1,128, 5, +130, 1, 0, 64, 2, 0, 0,128, 2, 0, 3,192, 2,128, 3, 28, 66, 0, 2, 22, + 0, 0,128,137,192, 1, 3,225,128, 0, 0, 22, 0,251,127, 30, 0,128, 0, 7, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, + 6, 0, 0, 0, 0, 0, 0, 0,112, 97,105,114,115, 0, 4, 5, 0, 0, 0, 0, + 0, 0, 0,116,121,112,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, + 98,101,114, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97, +110,100,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,115,101,116, + 0, 0, 0, 0, 0, 25, 0, 0, 0,192, 0, 0, 0,193, 0, 0, 0,193, 0, 0, + 0,193, 0, 0, 0,193, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, + 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, 0,194, 0, 0, + 0,194, 0, 0, 0,194, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, + 0,197, 0, 0, 0,197, 0, 0, 0,197, 0, 0, 0,200, 0, 0, 0,193, 0, 0, + 0,201, 0, 0, 0,203, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 24, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 24, 0, 0, 0, 7, 0, 0, 0, + 0, 0, 0, 0,104, 97,110,100,108,101, 0, 1, 0, 0, 0, 24, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,103,101,110,101,114, 97,116,111, +114, 41, 0, 4, 0, 0, 0, 24, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40, +102,111,114, 32,115,116, 97,116,101, 41, 0, 4, 0, 0, 0, 24, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, + 0, 4, 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 5, + 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 5, 0, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,218, 0, 0, + 0,227, 0, 0, 0, 0, 2, 0, 11, 28, 0, 0, 0,133, 0, 0, 0,192, 0, 0, + 0, 1, 65, 0, 0,156,128,128, 1,197,128, 0, 0,198,192,192, 1, 0, 1,128, + 0,220,128, 0, 1, 1, 1, 1, 0, 64, 1,128, 1,129, 1, 1, 0, 32, 1, 2, +128, 5, 66, 1, 0, 70,194,129, 0, 28,130, 0, 1, 23,128, 65, 4, 22,192, 0, +128, 5,194, 1, 0, 64, 2, 0, 1,134,194,129, 0, 28, 66,128, 1, 31, 65,253, +127, 5, 1, 2, 0, 6, 65, 66, 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, + 1, 30, 0,128, 0, 10, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97, +119,103,101,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 5, 0, 0, + 0, 0, 0, 0, 0,103,101,116,110, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, 0, 0, 0, 0, 28, + 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,219, 0, 0, 0,220, + 0, 0, 0,220, 0, 0, 0,220, 0, 0, 0,220, 0, 0, 0,221, 0, 0, 0,221, + 0, 0, 0,221, 0, 0, 0,221, 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,222, + 0, 0, 0,222, 0, 0, 0,222, 0, 0, 0,223, 0, 0, 0,223, 0, 0, 0,223, + 0, 0, 0,223, 0, 0, 0,221, 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,226, + 0, 0, 0,226, 0, 0, 0,226, 0, 0, 0,227, 0, 0, 0, 8, 0, 0, 0, 7, + 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, 0, 0, + 0, 27, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 8, 0, 0, 0, 27, + 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110,100,101, +120, 41, 0, 11, 0, 0, 0, 22, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40, +102,111,114, 32,108,105,109,105,116, 41, 0, 11, 0, 0, 0, 22, 0, 0, 0, 11, + 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 11, 0, + 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 12, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,238, 0, 0, 0, +252, 0, 0, 0, 0, 2, 0, 10, 52, 0, 0, 0,128, 0, 0, 0,219, 64,128, 0, + 22, 0, 0,128,193, 0, 0, 0, 21,192, 0, 1,133, 64, 0, 0,154, 0, 0, 0, + 22,128, 0,128,133, 64, 0, 0,137, 0, 0,129, 22,192, 9,128,133,192, 0, 0, +202,192, 0, 0,201, 64, 65,130,201,192, 65,131,201, 64, 66,132,156,128, 0, 1, +197,128, 2, 0, 10, 1, 1, 0, 9, 1,195,133, 9, 1,195,134, 9, 1, 0,129, + 9,129, 67,131,220,128, 0, 1, 5,193, 3, 0, 74,193, 0, 1,128, 1,128, 1, +192, 1, 0, 1, 73, 65, 68,136, 73,193, 68,137, 73, 65, 69,138, 98, 65, 0, 1, + 28,129, 0, 1, 69,129, 5, 0,138, 1,129, 0,192, 1, 0, 2,137,193, 69,130, +137,129, 0,140,137,129,128,140,137,129, 0,141,162, 65,128, 0, 92,129, 0, 1, +199, 64, 0, 0,139,193,198, 2, 5, 2, 7, 0, 69, 2, 7, 0,156, 65, 0, 2, +139, 65,199, 2,156, 65, 0, 1,131, 1, 0, 3,135, 65, 0, 0, 30, 0,128, 0, + 30, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 20, 0, 0, 0, 0, + 0, 0, 0,101,114,114,111,114, 95,109,101,115,115, 97,103,101, 95,112,111,112, +117,112, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,116,105,116,108,101, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 79,107, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,115,105,122,101, 0, 4, 3, 0, 0, 0, + 0, 0, 0, 0, 54, 48, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105, +111,110, 0, 4, 44, 0, 0, 0, 0, 0, 0, 0,101,114,114,111,114, 95,109,101, +115,115, 97,103,101, 95,112,111,112,117,112, 32, 61, 32,110,105,108, 59, 32,114, +101,116,117,114,110, 32,105,117,112, 46, 67, 76, 79, 83, 69, 0, 4, 10, 0, 0, + 0, 0, 0, 0, 0,109,117,108,116,105,108,105,110,101, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,101,120,112, 97,110,100, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, + 89, 69, 83, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,114,101, 97,100,111,110,108, +121, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 51, 48, 48,120, 49, 53, 48, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,118, 98,111,120, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 97,108,105,103,110,109,101,110,116, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0, 65, 67, 69, 78, 84, 69, 82, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97, +114,103,105,110, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 49, 48,120, 49, 48, 0, + 4, 4, 0, 0, 0, 0, 0, 0, 0,103, 97,112, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0, 49, 48, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,100,105, 97,108,111,103, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 69,114,114,111,114, 32, 77,101,115,115, + 97,103,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,100,101,102, 97,117,108,116, +101,115, 99, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,100,101,102, 97,117,108,116, +101,110,116,101,114, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,115,116, 97,114,116, +102,111, 99,117,115, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,111,112,117,112, + 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 67, 69, 78, 84, 69, 82, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 0, 0, 0, 0, 52, 0, + 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, 0, 0,239, 0, + 0, 0,240, 0, 0, 0,240, 0, 0, 0,240, 0, 0, 0,241, 0, 0, 0,241, 0, + 0, 0,241, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, 0, 0,243, 0, + 0, 0,243, 0, 0, 0,243, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, + 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,244, 0, 0, 0,245, 0, + 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, + 0, 0,245, 0, 0, 0,245, 0, 0, 0,245, 0, 0, 0,246, 0, 0, 0,246, 0, + 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, 0, 0,246, 0, + 0, 0,246, 0, 0, 0,246, 0, 0, 0,247, 0, 0, 0,248, 0, 0, 0,248, 0, + 0, 0,248, 0, 0, 0,248, 0, 0, 0,249, 0, 0, 0,249, 0, 0, 0,250, 0, + 0, 0,250, 0, 0, 0,252, 0, 0, 0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0,101,114,114, 0, 0, 0, 0, 0, 51, 0, 0, 0, 10, 0, 0, 0, 0, 0, + 0, 0,116,114, 97, 99,101, 98, 97, 99,107, 0, 0, 0, 0, 0, 51, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 98,116, 0, 17, 0, 0, 0, 51, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0,109,108, 0, 24, 0, 0, 0, 51, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0,118, 98, 0, 33, 0, 0, 0, 51, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0,100,103, 0, 42, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0,254, 0, 0, 0,254, 0, 0, 0, 0, 0, 7, 2, + 2, 0, 0, 0, 30, 0, 0, 1, 30, 0,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0,254, 0, 0, 0,254, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 13, 1, 0, 0, 0, 2, 0, 6, + 29, 0, 0, 0, 26, 64, 0, 0, 22,192, 0,128,133, 0, 0, 0,192, 0,128, 0, +156, 64, 0, 1, 30, 0,128, 0,133, 64, 0, 0,197,128, 0, 0, 0, 1, 0, 0, +220, 0, 0, 1,156,128, 0, 0,198,192, 64, 1,218, 64, 0, 0, 22, 0, 1,128, +197, 0, 0, 0, 6, 1, 65, 1,220, 64, 0, 1, 30, 0,128, 0, 22, 0, 2,128, +197, 64, 1, 0,198,128,193, 1, 0, 1, 0, 1, 65,193, 0, 0,220, 64,128, 1, +197,192, 1, 0, 0, 1, 0, 1,221, 0, 0, 1,222, 0, 0, 0, 30, 0,128, 0, + 8, 0, 0, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 95, 69, 82, 82, 79, 82, 77, + 69, 83, 83, 65, 71, 69, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,112, 97, 99,107, + 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112, 99, 97,108,108, 0, 3, 0, 0, 0, + 0, 0, 0,240, 63, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, 6, 0, 0, 0, 0, + 0, 0, 0,116, 97, 98,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114,101, +109,111,118,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,117,110,112, 97, 99,107, + 0, 0, 0, 0, 0, 29, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 0, + 0, 2, 1, 0, 0, 2, 1, 0, 0, 3, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, + 0, 5, 1, 0, 0, 5, 1, 0, 0, 5, 1, 0, 0, 6, 1, 0, 0, 6, 1, 0, + 0, 6, 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, 7, 1, 0, 0, 8, 1, 0, + 0, 8, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, 0, 10, 1, 0, + 0, 10, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, 0, 11, 1, 0, + 0, 13, 1, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,102, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,101,114,114, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, 11, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 1, 0, 0, 15, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, 0,133, + 64, 0, 0,192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, 0, 30, + 0,128, 0, 2, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,112,114,111,116, +101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +108,111, 97,100,115,116,114,105,110,103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 15, + 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, 1, 0, 0, 15, + 1, 0, 0, 15, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,115, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 1, 0, 0, 16, 1, 0, 0, 0, 1, 0, 4, 7, 0, 0, 0, 69, 0, 0, + 0,133, 64, 0, 0,192, 0, 0, 0,156, 0, 0, 1, 93, 0, 0, 0, 94, 0, 0, + 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,112,114, +111,116,101, 99,116,101,100, 99, 97,108,108, 95, 0, 4, 9, 0, 0, 0, 0, 0, + 0, 0,108,111, 97,100,102,105,108,101, 0, 0, 0, 0, 0, 7, 0, 0, 0, 16, + 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 16, + 1, 0, 0, 16, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,102, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 1, 0, 0, 20, 1, 0, 0, 0, 3, 0, 8, 9, 0, 0, 0,197, 0, 0, + 0,198, 64,192, 1, 1,129, 0, 0, 78, 1,128,129,142, 65,128,129,206,129,128, +129,221, 0,128, 2,222, 0, 0, 0, 30, 0,128, 0, 4, 0, 0, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0,102,111,114,109, 97,116, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 37,100, + 32, 37,100, 32, 37,100, 0, 3, 0, 0, 0, 0, 0,224,111, 64, 0, 0, 0, 0, + 9, 0, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, + 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 19, 1, 0, 0, 20, 1, 0, 0, + 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,114, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,103, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 98, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, + 0, 0, 95, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 27, 0, 0, 0, 9, 0, + 0, 0, 37, 0, 0, 0, 29, 0, 0, 0, 53, 0, 0, 0, 55, 0, 0, 0, 55, 0, + 0, 0, 55, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, 0, 0, 56, 0, + 0, 0, 56, 0, 0, 0, 79, 0, 0, 0,109, 0, 0, 0,111, 0, 0, 0,111, 0, + 0, 0,111, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, 0, 0,112, 0, + 0, 0,112, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, 0, 0,113, 0, + 0, 0,113, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, 0, 0,114, 0, + 0, 0,114, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, 0, 0,115, 0, + 0, 0,115, 0, 0, 0,130, 0, 0, 0,122, 0, 0, 0,136, 0, 0, 0,132, 0, + 0, 0,156, 0, 0, 0,138, 0, 0, 0,162, 0, 0, 0,163, 0, 0, 0,163, 0, + 0, 0,164, 0, 0, 0,166, 0, 0, 0,168, 0, 0, 0,166, 0, 0, 0,170, 0, + 0, 0,172, 0, 0, 0,170, 0, 0, 0,174, 0, 0, 0,176, 0, 0, 0,174, 0, + 0, 0,178, 0, 0, 0,189, 0, 0, 0,178, 0, 0, 0,191, 0, 0, 0,203, 0, + 0, 0,191, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, 0, 0,207, 0, + 0, 0,214, 0, 0, 0,215, 0, 0, 0,215, 0, 0, 0,216, 0, 0, 0,218, 0, + 0, 0,227, 0, 0, 0,218, 0, 0, 0,229, 0, 0, 0,229, 0, 0, 0,229, 0, + 0, 0,229, 0, 0, 0,236, 0, 0, 0,236, 0, 0, 0,252, 0, 0, 0,238, 0, + 0, 0,254, 0, 0, 0,254, 0, 0, 0, 13, 1, 0, 0, 0, 1, 0, 0, 15, 1, + 0, 0, 15, 1, 0, 0, 16, 1, 0, 0, 16, 1, 0, 0, 20, 1, 0, 0, 18, 1, + 0, 0, 20, 1, 0, 0, 3, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0,119,105, +100,103,101,116, 95,103,101,116,116, 97, 98,108,101, 0, 7, 0, 0, 0, 94, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,103,101, +116,116, 97, 98,108,101, 0, 16, 0, 0, 0, 94, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,116, 97, 98,108,101, 0, + 17, 0, 0, 0, 94, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/iuplua_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/label.loh b/iup/srclua5/loh/label.loh new file mode 100755 index 0000000..3aa72b7 --- /dev/null +++ b/iup/srclua5/loh/label.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/label.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/label.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,108, 97, 98, +101,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 17, + 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131, 69, + 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, 0, 0,193, +128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, 0, 0, 0, +110,105, 99,107, 0, 4, 6, 0, 0, 0,108, 97, 98,101,108, 0, 4, 7, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 83, + 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 13, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64, +192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, + 0, 0, 0, 76, 97, 98,101,108, 0, 4, 6, 0, 0, 0,116,105,116,108,101, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, + 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/label.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/label_be32.loh b/iup/srclua5/loh/label_be32.loh new file mode 100755 index 0000000..ef70ed4 --- /dev/null +++ b/iup/srclua5/loh/label_be32.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/label_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/label_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,108, 97, 98, +101,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, + 2, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, 0, 0,128, 0, + 2,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, 0, 5, +110,105, 99,107, 0, 4, 0, 0, 0, 6,108, 97, 98,101,108, 0, 4, 0, 0, 0, + 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, + 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 83, + 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 14, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, + 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105, +117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 13, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, + 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, + 0, 0, 6, 76, 97, 98,101,108, 0, 4, 0, 0, 0, 6,116,105,116,108,101, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, + 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 16, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, + 0, 0, 16, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/label_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/label_be64.loh b/iup/srclua5/loh/label_be64.loh new file mode 100755 index 0000000..4d528c0 --- /dev/null +++ b/iup/srclua5/loh/label_be64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/label_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/label_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,108, 97, 98,101,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,108, 97, 98,101,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0, 83, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 76, + 97, 98,101,108, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/label_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/label_le64.loh b/iup/srclua5/loh/label_le64.loh new file mode 100755 index 0000000..554b5da --- /dev/null +++ b/iup/srclua5/loh/label_le64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/label_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/label_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,108, 97, 98,101,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,108, 97, 98,101,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0, 83, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 76, + 97, 98,101,108, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/label_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/label_le64w.loh b/iup/srclua5/loh/label_le64w.loh new file mode 100755 index 0000000..d622b47 --- /dev/null +++ b/iup/srclua5/loh/label_le64w.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/label_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/label_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,108, 97, 98,101,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0,108, 97, 98,101,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, + 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0, 83, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 76, + 97, 98,101,108, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/label_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/list.loh b/iup/srclua5/loh/list.loh new file mode 100755 index 0000000..860d071 --- /dev/null +++ b/iup/srclua5/loh/list.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/list.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/list.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,108,105,115, +116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 22, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 64, 1, 0, 73, 0,194,131, 73,128,194,132, 73, 0,195,133, 73,128, +195,134, 73, 0,195,135, 9, 64, 0,131,100, 0, 0, 0, 9, 64, 0,136, 69, 64, + 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 4, 0,128, 0, 0, 0,193,192, + 4, 0, 92, 64,128, 1, 30, 0,128, 0, 20, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,108,105,115,116, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 97, 99, +116,105,111,110, 0, 4, 4, 0, 0, 0,115,110,110, 0, 4, 15, 0, 0, 0,109, +117,108,116,105,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 2, 0, 0, 0,115, + 0, 4, 8, 0, 0, 0,101,100,105,116, 95, 99, 98, 0, 4, 3, 0, 0, 0,110, +115, 0, 4, 12, 0, 0, 0,100,114,111,112,100,111,119,110, 95, 99, 98, 0, 4, + 2, 0, 0, 0,110, 0, 4, 12, 0, 0, 0,100, 98,108, 99,108,105, 99,107, 95, + 99, 98, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105, +100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 19, 0, 0, 0, 0, 2, 0, 3, 4, 0, + 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, + 0, 0, 4, 5, 0, 0, 0, 76,105,115,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 19, 0, 0, 0, 17, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116, +114,108, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/list.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/list_be32.loh b/iup/srclua5/loh/list_be32.loh new file mode 100755 index 0000000..1e70e44 --- /dev/null +++ b/iup/srclua5/loh/list_be32.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/list_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/list_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,108,105,115, +116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 20, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0,192, 74,131,194, 0, 73,132,194,128, 73,133,195, 0, 73,131, 0, + 64, 9, 0, 0, 0,100,134,128, 64, 9, 0, 3,128, 69, 0, 0, 0,128, 1, 0, + 64, 92, 0, 3,192, 69, 0, 0, 0,128, 0, 4, 0,193, 1,128, 64, 92, 0,128, + 0, 30, 0, 0, 0, 17, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, + 5,108,105,115,116, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, + 0, 4,115,110,110, 0, 4, 0, 0, 0, 15,109,117,108,116,105,115,101,108,101, + 99,116, 95, 99, 98, 0, 4, 0, 0, 0, 2,115, 0, 4, 0, 0, 0, 8,101,100, +105,116, 95, 99, 98, 0, 4, 0, 0, 0, 3,110,115, 0, 4, 0, 0, 0, 14, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, + 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117, +112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 17, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0, +157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 5, 76,105, +115,116, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, + 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, + 5, 99,116,114,108, 0, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/list_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/list_be64.loh b/iup/srclua5/loh/list_be64.loh new file mode 100755 index 0000000..1a3776c --- /dev/null +++ b/iup/srclua5/loh/list_be64.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/list_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/list_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,108,105,115,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 1, 0, 73, 0,194,131, 73,128,194,132, 73, 0, +195,133, 73,128,195,134, 73, 0,195,135, 9, 64, 0,131,100, 0, 0, 0, 9, 64, + 0,136, 69, 64, 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 4, 0,128, 0, + 0, 0,193,192, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 20, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,108,105,115,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,115,110,110, 0, 4, 15, 0, 0, 0, 0, + 0, 0, 0,109,117,108,116,105,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,101,100, +105,116, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,115, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,100,114,111,112,100,111,119,110, 95, 99, 98, 0, 4, + 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,100, + 98,108, 99,108,105, 99,107, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, + 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101, +116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 19, 0, + 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 76, +105,115,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 19, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 19, 0, 0, 0, 17, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/list_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/list_le64.loh b/iup/srclua5/loh/list_le64.loh new file mode 100755 index 0000000..995a457 --- /dev/null +++ b/iup/srclua5/loh/list_le64.loh @@ -0,0 +1,45 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/list_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/list_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,108,105,115,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,192, 0, 0, 73, 0,194,131, 73,128,194,132, 73, 0, +195,133, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,108,105,115,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0,115,110,110, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105, +115,101,108,101, 99,116, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, 95, 99, 98, 0, 4, 3, + 0, 0, 0, 0, 0, 0, 0,110,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 76,105, +115,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, + 0, 17, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 10, 0, + 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/list_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/list_le64w.loh b/iup/srclua5/loh/list_le64w.loh new file mode 100755 index 0000000..1859883 --- /dev/null +++ b/iup/srclua5/loh/list_le64w.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/list_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/list_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,108,105,115,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 1, 0, 73, 0,194,131, 73,128,194,132, 73, 0, +195,133, 73,128,195,134, 73, 0,195,135, 9, 64, 0,131,100, 0, 0, 0, 9, 64, + 0,136, 69, 64, 4, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 4, 0,128, 0, + 0, 0,193,192, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 20, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,108,105,115,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, + 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,115,110,110, 0, 4, 15, 0, 0, 0, 0, + 0, 0, 0,109,117,108,116,105,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 2, + 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,101,100, +105,116, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,115, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,100,114,111,112,100,111,119,110, 95, 99, 98, 0, 4, + 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,100, + 98,108, 99,108,105, 99,107, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, + 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101, +116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 19, 0, + 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 76, +105,115,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 19, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 19, 0, 0, 0, 17, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/list_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/matrix.loh b/iup/srclua5/loh/matrix.loh new file mode 100755 index 0000000..cb1d401 --- /dev/null +++ b/iup/srclua5/loh/matrix.loh @@ -0,0 +1,94 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/matrix.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/matrix.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 12, 0, 0, 0, 64,109, 97,116, +114,105,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 50, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, + 9, 64, 65,130, 74,128, 4, 0, 73, 0,194,131, 73,128,194,132, 73,128,194,133, + 73, 64, 67,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, 73, 64, 69,138, + 73,192, 67,139, 73,192,195,139, 73,192, 67,140, 73,192,195,140, 73,192, 67,141, + 73,192,195,141,138, 64,128, 0,193,192, 3, 0,137,128,199,142,162, 64,128, 0, + 73,128, 0,142,138, 64,128, 0,193,192, 3, 0,137,128,199,142,162, 64,128, 0, + 73,128,128,143, 73,128, 66,144, 73,192,195,144, 73,192, 72,145, 9, 64, 0,131, + 9, 64, 73,146, 9,192, 73,147,100, 0, 0, 0, 9, 64, 0,148,100, 64, 0, 0, + 9, 64,128,148,100,128, 0, 0, 9, 64, 0,149, 69,192, 10, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69, 0, 11, 0,128, 0, 0, 0,193, 64, 11, 0, 92, 64,128, 1, + 30, 0,128, 0, 46, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0,109, 97,116,114,105,120, 0, 4, 7, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, + 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 97, 99,116,105,111,110, + 95, 99, 98, 0, 4, 6, 0, 0, 0,110,110,110,110,115, 0, 4, 9, 0, 0, 0, + 99,108,105, 99,107, 95, 99, 98, 0, 4, 4, 0, 0, 0,110,110,115, 0, 4, 11, + 0, 0, 0,114,101,108,101, 97,115,101, 95, 99, 98, 0, 4, 8, 0, 0, 0,100, +114,111,112, 95, 99, 98, 0, 4, 4, 0, 0, 0,105,110,110, 0, 4, 13, 0, 0, + 0,100,114,111,112, 99,104,101, 99,107, 95, 99, 98, 0, 4, 3, 0, 0, 0,110, +110, 0, 4, 8, 0, 0, 0,100,114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, +110,110,110,110,110,110,110, 0, 4, 14, 0, 0, 0,100,114,111,112,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 7, 0, 0, 0,110,110,105,115,110,110, 0, 4, + 11, 0, 0, 0,101,100,105,116,105,111,110, 95, 99, 98, 0, 4, 5, 0, 0, 0, +110,110,110,110, 0, 4, 13, 0, 0, 0,101,110,116,101,114,105,116,101,109, 95, + 99, 98, 0, 4, 13, 0, 0, 0,108,101, 97,118,101,105,116,101,109, 95, 99, 98, + 0, 4, 13, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, + 13, 0, 0, 0,115, 99,114,111,108,108,116,111,112, 95, 99, 98, 0, 4, 11, 0, + 0, 0,102,103, 99,111,108,111,114, 95, 99, 98, 0, 4, 11, 0, 0, 0, 98,103, + 99,111,108,111,114, 95, 99, 98, 0, 4, 8, 0, 0, 0,102,111,110,116, 95, 99, + 98, 0, 4, 4, 0, 0, 0,114,101,116, 0, 4, 2, 0, 0, 0,115, 0, 4, 9, + 0, 0, 0,118, 97,108,117,101, 95, 99, 98, 0, 4, 14, 0, 0, 0,118, 97,108, +117,101, 95,101,100,105,116, 95, 99, 98, 0, 4, 8, 0, 0, 0,109, 97,114,107, + 95, 99, 98, 0, 4, 12, 0, 0, 0,109, 97,114,107,101,100,105,116, 95, 99, 98, + 0, 4, 4, 0, 0, 0,110,110,110, 0, 4, 8, 0, 0, 0,105,110, 99,108,117, +100,101, 0, 4, 14, 0, 0, 0,105,117,112, 99,111,110,116,114,111,108,115, 46, +104, 0, 4, 11, 0, 0, 0,101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 8, 0, 0, 0,115,101,116, 99,101,108,108, 0, 4, + 8, 0, 0, 0,103,101,116, 99,101,108,108, 0, 4, 18, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, + 35, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, +157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 7, 0, 0, + 0, 77, 97,116,114,105,120, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, + 34, 0, 0, 0, 35, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 39, 0, + 0, 0, 0, 4, 0, 9, 9, 0, 0, 0, 5, 1, 0, 0, 64, 1, 0, 0,128, 1, +128, 0,193, 65, 0, 0, 0, 2, 0, 1,149, 1, 2, 3,192, 1,128, 1, 28, 65, + 0, 2, 30, 0,128, 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 83,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 2, 0, 0, 0, 58, 0, 0, 0, 0, 0, 9, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 4, + 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 2, 0, 0, 0,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, + 99, 0, 0, 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0,118, 97,108, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 43, 0, + 0, 0, 0, 3, 0, 8, 9, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1, +128, 0,129, 65, 0, 0,192, 1, 0, 1, 85,193,129, 2,221, 0,128, 1,222, 0, + 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 71,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 2, 0, 0, 0, 58, 0, 0, 0, 0, 0, 9, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 3, + 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 2, 0, 0, 0,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, + 99, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 4, 0, + 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, + 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, + 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, + 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, + 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, + 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, + 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, + 0, 0, 35, 0, 0, 0, 33, 0, 0, 0, 39, 0, 0, 0, 37, 0, 0, 0, 43, 0, + 0, 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 36, 0, 0, 0, 49, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/matrix.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/matrix_be32.loh b/iup/srclua5/loh/matrix_be32.loh new file mode 100755 index 0000000..3d83422 --- /dev/null +++ b/iup/srclua5/loh/matrix_be32.loh @@ -0,0 +1,94 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/matrix_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/matrix_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 12, 64,109, 97,116, +114,105,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 0, 0, 0, 50, 0, 1,128, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9, +130, 65, 64, 9, 0, 4,128, 74,131,194, 0, 73,132,194,128, 73,133,194,128, 73, +134, 67, 64, 73,135, 67,192, 73,136, 68, 64, 73,137, 68,192, 73,138, 69, 64, 73, +139, 67,192, 73,139,195,192, 73,140, 67,192, 73,140,195,192, 73,141, 67,192, 73, +141,195,192, 73, 0,128, 64,138, 0, 3,192,193,142,199,128,137, 0,128, 64,162, +142, 0,128, 73, 0,128, 64,138, 0, 3,192,193,142,199,128,137, 0,128, 64,162, +143,128,128, 73,144, 66,128, 73,144,195,192, 73,145, 72,192, 73,131, 0, 64, 9, +146, 73, 64, 9,147, 73,192, 9, 0, 0, 0,100,148, 0, 64, 9, 0, 0, 64,100, +148,128, 64, 9, 0, 0,128,100,149, 0, 64, 9, 0, 10,192, 69, 0, 0, 0,128, + 1, 0, 64, 92, 0, 11, 0, 69, 0, 0, 0,128, 0, 11, 64,193, 1,128, 64, 92, + 0,128, 0, 30, 0, 0, 0, 46, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, + 0, 0, 7,109, 97,116,114,105,120, 0, 4, 0, 0, 0, 7,112, 97,114,101,110, +116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99, +114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, 9, + 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 10, 97, 99,116,105,111,110, + 95, 99, 98, 0, 4, 0, 0, 0, 6,110,110,110,110,115, 0, 4, 0, 0, 0, 9, + 99,108,105, 99,107, 95, 99, 98, 0, 4, 0, 0, 0, 4,110,110,115, 0, 4, 0, + 0, 0, 11,114,101,108,101, 97,115,101, 95, 99, 98, 0, 4, 0, 0, 0, 8,100, +114,111,112, 95, 99, 98, 0, 4, 0, 0, 0, 4,105,110,110, 0, 4, 0, 0, 0, + 13,100,114,111,112, 99,104,101, 99,107, 95, 99, 98, 0, 4, 0, 0, 0, 3,110, +110, 0, 4, 0, 0, 0, 8,100,114, 97,119, 95, 99, 98, 0, 4, 0, 0, 0, 8, +110,110,110,110,110,110,110, 0, 4, 0, 0, 0, 14,100,114,111,112,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 0, 0, 0, 7,110,110,105,115,110,110, 0, 4, + 0, 0, 0, 11,101,100,105,116,105,111,110, 95, 99, 98, 0, 4, 0, 0, 0, 5, +110,110,110,110, 0, 4, 0, 0, 0, 13,101,110,116,101,114,105,116,101,109, 95, + 99, 98, 0, 4, 0, 0, 0, 13,108,101, 97,118,101,105,116,101,109, 95, 99, 98, + 0, 4, 0, 0, 0, 13,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, + 0, 0, 0, 13,115, 99,114,111,108,108,116,111,112, 95, 99, 98, 0, 4, 0, 0, + 0, 11,102,103, 99,111,108,111,114, 95, 99, 98, 0, 4, 0, 0, 0, 11, 98,103, + 99,111,108,111,114, 95, 99, 98, 0, 4, 0, 0, 0, 8,102,111,110,116, 95, 99, + 98, 0, 4, 0, 0, 0, 4,114,101,116, 0, 4, 0, 0, 0, 2,115, 0, 4, 0, + 0, 0, 9,118, 97,108,117,101, 95, 99, 98, 0, 4, 0, 0, 0, 14,118, 97,108, +117,101, 95,101,100,105,116, 95, 99, 98, 0, 4, 0, 0, 0, 8,109, 97,114,107, + 95, 99, 98, 0, 4, 0, 0, 0, 12,109, 97,114,107,101,100,105,116, 95, 99, 98, + 0, 4, 0, 0, 0, 4,110,110,110, 0, 4, 0, 0, 0, 8,105,110, 99,108,117, +100,101, 0, 4, 0, 0, 0, 14,105,117,112, 99,111,110,116,114,111,108,115, 46, +104, 0, 4, 0, 0, 0, 11,101,120,116,114, 97,102,117,110, 99,115, 0, 3, 63, +240, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 0, 0, 0, 8,115,101,116, 99,101,108,108, 0, 4, + 0, 0, 0, 8,103,101,116, 99,101,108,108, 0, 4, 0, 0, 0, 18,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, + 32,119,105,100,103,101,116, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 33, + 0, 0, 0, 35, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, 64,198, + 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, + 7, 77, 97,116,114,105,120, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, + 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, + 0, 39, 0, 4, 0, 9, 0, 0, 0, 9, 0, 0, 1, 5, 0, 0, 1, 64, 0,128, + 1,128, 0, 0, 65,193, 1, 0, 2, 0, 3, 2, 1,149, 1,128, 1,192, 2, 0, + 65, 28, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 13, 83,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 0, 0, 0, 2, 58, 0, 0, 0, 0, 0, 0, + 0, 0, 9, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, + 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 39, 0, + 0, 0, 4, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 2,108, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, + 99, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 4,118, 97,108, 0, 0, 0, + 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 0, 43, 0, 3, 0, 8, 0, 0, 0, 9, 0, 0, 0,197, 0, 0, 1, 0, 0,128, + 1, 64, 0, 0, 65,129, 1, 0, 1,192, 2,129,193, 85, 1,128, 0,221, 0, 0, + 0,222, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 13, 71,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 0, 0, 0, 2, 58, 0, 0, 0, 0, 0, 0, + 0, 0, 9, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, + 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, 0, + 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 2,108, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, + 99, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, + 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, + 0, 30, 0, 0, 0, 35, 0, 0, 0, 33, 0, 0, 0, 39, 0, 0, 0, 37, 0, 0, + 0, 43, 0, 0, 0, 41, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, + 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, + 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 36, 0, 0, 0, 49, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/matrix_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/matrix_be64.loh b/iup/srclua5/loh/matrix_be64.loh new file mode 100755 index 0000000..b119ef9 --- /dev/null +++ b/iup/srclua5/loh/matrix_be64.loh @@ -0,0 +1,107 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/matrix_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/matrix_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,109, 97,116,114,105,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 50, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74,128, 4, 0, 73, 0,194,131, 73,128,194,132, + 73,128,194,133, 73, 64, 67,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, + 73, 64, 69,138, 73,192, 67,139, 73,192,195,139, 73,192, 67,140, 73,192,195,140, + 73,192, 67,141, 73,192,195,141,138, 64,128, 0,193,192, 3, 0,137,128,199,142, +162, 64,128, 0, 73,128, 0,142,138, 64,128, 0,193,192, 3, 0,137,128,199,142, +162, 64,128, 0, 73,128,128,143, 73,128, 66,144, 73,192,195,144, 73,192, 72,145, + 9, 64, 0,131, 9, 64, 73,146, 9,192, 73,147,100, 0, 0, 0, 9, 64, 0,148, +100, 64, 0, 0, 9, 64,128,148,100,128, 0, 0, 9, 64, 0,149, 69,192, 10, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 11, 0,128, 0, 0, 0,193, 64, 11, 0, + 92, 64,128, 1, 30, 0,128, 0, 46, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,116,114,105, +120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, + 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 95, 99, 98, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,108,105, 99,107, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0,110,110,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,114,101,108,101, 97, +115,101, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,114,111,112, 95, + 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,110,110, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0,100,114,111,112, 99,104,101, 99,107, 95, 99, 98, 0, 4, 3, + 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100, +114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,110,110,110,110, +110,110,110, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,100,114,111,112,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,110,105,115, +110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,100,105,116,105,111,110, 95, + 99, 98, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,110,110,110, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,101,110,116,101,114,105,116,101,109, 95, 99, 98, 0, 4, + 13, 0, 0, 0, 0, 0, 0, 0,108,101, 97,118,101,105,116,101,109, 95, 99, 98, + 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, + 99, 98, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,115, 99,114,111,108,108,116,111, +112, 95, 99, 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,102,103, 99,111,108,111, +114, 95, 99, 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 98,103, 99,111,108,111, +114, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,102,111,110,116, 95, 99, + 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, + 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 95,101, +100,105,116, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107, + 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107,101,100,105, +116, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 8, + 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 14, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 99,111,110,116,114,111,108,115, 46,104, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115, +101,116, 99,101,108,108, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,103,101,116, 99, +101,108,108, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 0, 0, 0, 35, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 77, 97,116,114,105,120, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, + 35, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114, +103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 37, 0, 0, 0, 39, 0, 0, 0, 0, 4, 0, 9, 9, 0, 0, 0, 5, 1, + 0, 0, 64, 1, 0, 0,128, 1,128, 0,193, 65, 0, 0, 0, 2, 0, 1,149, 1, + 2, 3,192, 1,128, 1, 28, 65, 0, 2, 30, 0,128, 0, 2, 0, 0, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 9, 0, 0, 0, 38, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 4, 0, 0, 0, 7, + 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, 8, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0,118, 97,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 0, 3, + 0, 8, 9, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,129, 65, + 0, 0,192, 1, 0, 1, 85,193,129, 2,221, 0,128, 1,222, 0, 0, 0, 30, 0, +128, 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 71,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, + 0, 0, 0, 9, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, + 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108, +101, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,108, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, + 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 24, 0, + 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 35, 0, + 0, 0, 33, 0, 0, 0, 39, 0, 0, 0, 37, 0, 0, 0, 43, 0, 0, 0, 41, 0, + 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 46, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 36, 0, 0, 0, 49, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/matrix_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/matrix_le64.loh b/iup/srclua5/loh/matrix_le64.loh new file mode 100755 index 0000000..4fbccff --- /dev/null +++ b/iup/srclua5/loh/matrix_le64.loh @@ -0,0 +1,107 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/matrix_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluacontrols51/matrix_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,109, 97,116,114,105,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 50, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74,128, 4, 0, 73, 0,194,131, 73,128,194,132, + 73,128,194,133, 73, 64, 67,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, + 73, 64, 69,138, 73,192, 67,139, 73,192,195,139, 73,192, 67,140, 73,192,195,140, + 73,192, 67,141, 73,192,195,141,138, 64,128, 0,193,192, 3, 0,137,128,199,142, +162, 64,128, 0, 73,128, 0,142,138, 64,128, 0,193,192, 3, 0,137,128,199,142, +162, 64,128, 0, 73,128,128,143, 73,128, 66,144, 73,192,195,144, 73,192, 72,145, + 9, 64, 0,131, 9, 64, 73,146, 9,192, 73,147,100, 0, 0, 0, 9, 64, 0,148, +100, 64, 0, 0, 9, 64,128,148,100,128, 0, 0, 9, 64, 0,149, 69,192, 10, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 11, 0,128, 0, 0, 0,193, 64, 11, 0, + 92, 64,128, 1, 30, 0,128, 0, 46, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,116,114,105, +120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, + 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 95, 99, 98, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,108,105, 99,107, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0,110,110,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,114,101,108,101, 97, +115,101, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,114,111,112, 95, + 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,110,110, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0,100,114,111,112, 99,104,101, 99,107, 95, 99, 98, 0, 4, 3, + 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100, +114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,110,110,110,110, +110,110,110, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,100,114,111,112,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,110,105,115, +110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,100,105,116,105,111,110, 95, + 99, 98, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,110,110,110, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,101,110,116,101,114,105,116,101,109, 95, 99, 98, 0, 4, + 13, 0, 0, 0, 0, 0, 0, 0,108,101, 97,118,101,105,116,101,109, 95, 99, 98, + 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, + 99, 98, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,115, 99,114,111,108,108,116,111, +112, 95, 99, 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,102,103, 99,111,108,111, +114, 95, 99, 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 98,103, 99,111,108,111, +114, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,102,111,110,116, 95, 99, + 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, + 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 95,101, +100,105,116, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107, + 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107,101,100,105, +116, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 8, + 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 14, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 99,111,110,116,114,111,108,115, 46,104, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102,117,110, 99,115, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97, +116,101, 69,108,101,109,101,110,116, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115, +101,116, 99,101,108,108, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,103,101,116, 99, +101,108,108, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 0, 0, 0, 35, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 77, 97,116,114,105,120, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, + 35, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114, +103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 37, 0, 0, 0, 39, 0, 0, 0, 0, 4, 0, 9, 9, 0, 0, 0, 5, 1, + 0, 0, 64, 1, 0, 0,128, 1,128, 0,193, 65, 0, 0, 0, 2, 0, 1,149, 1, + 2, 3,192, 1,128, 1, 28, 65, 0, 2, 30, 0,128, 0, 2, 0, 0, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 9, 0, 0, 0, 38, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 4, 0, 0, 0, 7, + 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, 8, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0,118, 97,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 43, 0, 0, 0, 0, 3, + 0, 8, 9, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,129, 65, + 0, 0,192, 1, 0, 1, 85,193,129, 2,221, 0,128, 1,222, 0, 0, 0, 30, 0, +128, 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 71,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, + 0, 0, 0, 9, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, + 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, + 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108, +101, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,108, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, 23, 0, + 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 24, 0, + 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 35, 0, + 0, 0, 33, 0, 0, 0, 39, 0, 0, 0, 37, 0, 0, 0, 43, 0, 0, 0, 41, 0, + 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 46, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 36, 0, 0, 0, 49, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/matrix_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/matrix_le64w.loh b/iup/srclua5/loh/matrix_le64w.loh new file mode 100755 index 0000000..13bc7f9 --- /dev/null +++ b/iup/srclua5/loh/matrix_le64w.loh @@ -0,0 +1,103 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/matrix_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/matrix_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,109, 97,116,114,105,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 45, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 4, 0, 73, 0,194,131, 73,128,194,132, + 73,128,194,133, 73, 64, 67,134, 73,192, 67,135, 73, 64, 68,136, 73,192, 68,137, + 73, 64, 69,138, 73,192, 67,139, 73,192,195,139, 73,192, 67,140, 73,192,195,140, + 73,192, 67,141, 73,192,195,141,138, 64,128, 0,193,192, 3, 0,137,128,199,142, +162, 64,128, 0, 73,128, 0,142, 73,128,194,143, 73,192, 67,144, 73, 64,197,144, + 9, 64, 0,131, 9,192, 72,145, 9, 64, 73,146,100, 0, 0, 0, 9, 64, 0,147, +100, 64, 0, 0, 9, 64,128,147,100,128, 0, 0, 9, 64, 0,148, 69, 64, 10, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69,128, 10, 0,128, 0, 0, 0,193,192, 10, 0, + 92, 64,128, 1, 30, 0,128, 0, 44, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,116,114,105, +120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, + 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 95, 99, 98, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,110,110,110,110,115, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,108,105, 99,107, 95, 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, + 0, 0,110,110,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,114,101,108,101, 97, +115,101, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,114,111,112, 95, + 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,105,110,110, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0,100,114,111,112, 99,104,101, 99,107, 95, 99, 98, 0, 4, 3, + 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100, +114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,110,110,110,110, +110,110,110, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,100,114,111,112,115,101,108, +101, 99,116, 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,110,105,115, +110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,100,105,116,105,111,110, 95, + 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0,101,110,116,101,114,105,116,101,109, 95, 99, 98, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0,108,101, 97,118,101,105,116,101,109, 95, 99, 98, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, + 98, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,115, 99,114,111,108,108,116,111,112, + 95, 99, 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,102,103, 99,111,108,111,114, + 95, 99, 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 98,103, 99,111,108,111,114, + 95, 99, 98, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, 95, 99, + 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,114,101,116, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,118, 97,108,117,101, + 95,101,100,105,116, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,109, 97, +114,107, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107,101, +100,105,116, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112,109, 97,116,114, +105,120, 46,104, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102, +117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0,115,101,116, 99,101,108,108, 0, 4, 8, 0, 0, 0, 0, + 0, 0, 0,103,101,116, 99,101,108,108, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 34, 0, 0, 0, 0, + 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, + 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, + 77, 97,116,114,105,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105, +111,110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, + 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 38, 0, 0, 0, 0, 4, 0, + 9, 9, 0, 0, 0, 5, 1, 0, 0, 64, 1, 0, 0,128, 1,128, 0,193, 65, 0, + 0, 0, 2, 0, 1,149, 1, 2, 3,192, 1,128, 1, 28, 65, 0, 2, 30, 0,128, + 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116, +114,105, 98,117,116,101, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, + 0, 0, 9, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, + 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 38, 0, + 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,108, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,118, 97,108, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, + 0, 42, 0, 0, 0, 0, 3, 0, 8, 9, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, + 0, 64, 1,128, 0,129, 65, 0, 0,192, 1, 0, 1, 85,193,129, 2,221, 0,128, + 1,222, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0, 71,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 9, 0, 0, 0, 41, 0, 0, 0, 41, 0, + 0, 0, 41, 0, 0, 0, 41, 0, 0, 0, 41, 0, 0, 0, 41, 0, 0, 0, 41, 0, + 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 0, 0,108, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 99, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 45, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, + 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, + 0, 24, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, + 0, 29, 0, 0, 0, 34, 0, 0, 0, 32, 0, 0, 0, 38, 0, 0, 0, 36, 0, 0, + 0, 42, 0, 0, 0, 40, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, + 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 31, 0, + 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/matrix_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/menu.loh b/iup/srclua5/loh/menu.loh new file mode 100755 index 0000000..2c6f9cf --- /dev/null +++ b/iup/srclua5/loh/menu.loh @@ -0,0 +1,122 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/menu.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/menu.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,109,101,110, +117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 27, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, 0,131,100, 0, + 0, 0, 9, 64, 0,133,100, 64, 0, 0, 9, 64,128,133,100,128, 0, 0, 9, 64, + 0,134,100,192, 0, 0, 9, 64,128,134,100, 0, 1, 0, 9, 64, 0,135, 69,192, + 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 4, 0,128, 0, 0, 0,193, 64, + 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,109,101,110,117, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0,111,112,101,110, 95, + 99, 98, 0, 4, 1, 0, 0, 0, 0, 4, 13, 0, 0, 0,109,101,110,117, 99,108, +111,115,101, 95, 99, 98, 0, 4, 6, 0, 0, 0,112,111,112,117,112, 0, 4, 7, + 0, 0, 0, 97,112,112,101,110,100, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 7, 0, 0, 0,115,104,111,119,120,121, + 0, 4, 8, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 18, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 5, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 16, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, + 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, + 0, 0, 4, 6, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 2, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 0, 0, 0, 2, 0, 5, 5, 0, 0, 0, +133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, + 1, 0, 0, 0, 4, 7, 0, 0, 0, 65,112,112,101,110,100, 0, 0, 0, 0, 0, + 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 20, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 44, 0, 0, 0, + 0, 2, 0, 14, 85, 0, 0, 0,148, 0,128, 0,193, 0, 0, 0, 0, 1, 0, 1, + 65, 1, 0, 0,224,128, 18,128,197, 65, 0, 0, 6,130,129, 0,220,129, 0, 1, + 23,128,192, 3, 22, 64, 17,128,202, 1, 0, 0,199,193, 0, 0,197, 1, 1, 0, + 6,130,129, 0,220, 1, 1, 1, 22,128, 1,128, 5, 67, 0, 0, 64, 3, 0, 5, + 28,131, 0, 1, 87, 64, 65, 6, 22, 64, 0,128, 5,195, 0, 0, 9,195, 2, 5, +225,129, 0, 0, 22,128,253,127,197, 65, 0, 0, 6,130,129, 0, 6, 2, 64, 4, +220,129, 0, 1, 23,128,193, 3, 22, 0, 6,128,197, 65, 0, 0, 6,130,129, 0, + 6,194, 65, 4,220,129, 0, 1, 87, 0,194, 3, 22, 64, 1,128,197, 65, 0, 0, + 6,130,129, 0, 6,194, 65, 4,220,129, 0, 1, 23,128,193, 3, 22, 0, 3,128, +197,193, 0, 0, 6,130,129, 0, 6, 2, 64, 4,201, 1,130,132,197,193, 0, 0, + 6,130,129, 0, 6,194, 65, 4,201, 1, 2,133,197,193, 2, 0, 5,194, 0, 0, +220,129, 0, 1, 73,192, 1, 3, 22,192, 5,128,197, 65, 0, 0, 6,130,129, 0, + 6, 2, 64, 4,220,129, 0, 1, 23,128,193, 3, 22, 64, 4,128,197, 65, 0, 0, + 6,130,129, 0, 6,194, 65, 4,220,129, 0, 1, 23, 0,195, 3, 22,192, 2,128, +197,193, 0, 0, 6,130,129, 0, 6,194, 65, 4,201, 1, 2,128,197,193, 0, 0, + 6,130,129, 0, 6, 2, 64, 4,201, 1,130,132,197, 65, 3, 0, 5,194, 0, 0, +220,129, 0, 1, 73,192, 1, 3,223,192,236,127,197,128, 3, 0,221, 0,128, 0, +222, 0, 0, 0, 30, 0,128, 0, 15, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, + 63, 4, 5, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0,116, 97, 98,108, +101, 0, 4, 8, 0, 0, 0,105,116,101,109, 97,114,103, 0, 4, 6, 0, 0, 0, +112, 97,105,114,115, 0, 4, 7, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 7, + 0, 0, 0,115,116,114,105,110,103, 0, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, + 9, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, 4, 6, 0, 0, 0,116,105, +116,108,101, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 5, 0, 0, + 0,105,116,101,109, 0, 4, 9, 0, 0, 0,117,115,101,114,100, 97,116, 97, 0, + 4, 8, 0, 0, 0,115,117, 98,109,101,110,117, 0, 4, 5, 0, 0, 0, 77,101, +110,117, 0, 0, 0, 0, 0, 85, 0, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, 24, + 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, + 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 27, + 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 34, + 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, + 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 38, + 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 39, 0, 0, 0, 39, + 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 24, 0, 0, 0, 43, 0, 0, 0, 43, + 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 12, 0, 0, 0, 6, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 84, 0, 0, 0, 4, 0, 0, 0, 97,114,103, + 0, 0, 0, 0, 0, 84, 0, 0, 0, 2, 0, 0, 0,110, 0, 1, 0, 0, 0, 84, + 0, 0, 0, 12, 0, 0, 0, 40,102,111,114, 32,105,110,100,101,120, 41, 0, 4, + 0, 0, 0, 81, 0, 0, 0, 12, 0, 0, 0, 40,102,111,114, 32,108,105,109,105, +116, 41, 0, 4, 0, 0, 0, 81, 0, 0, 0, 11, 0, 0, 0, 40,102,111,114, 32, +115,116,101,112, 41, 0, 4, 0, 0, 0, 81, 0, 0, 0, 2, 0, 0, 0,105, 0, + 5, 0, 0, 0, 80, 0, 0, 0, 16, 0, 0, 0, 40,102,111,114, 32,103,101,110, +101,114, 97,116,111,114, 41, 0, 15, 0, 0, 0, 25, 0, 0, 0, 12, 0, 0, 0, + 40,102,111,114, 32,115,116, 97,116,101, 41, 0, 15, 0, 0, 0, 25, 0, 0, 0, + 14, 0, 0, 0, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, 0, 15, 0, + 0, 0, 25, 0, 0, 0, 2, 0, 0, 0,117, 0, 16, 0, 0, 0, 23, 0, 0, 0, + 2, 0, 0, 0,118, 0, 16, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 0, 3, 0, 7, 7, 0, 0, 0,197, 0, + 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, 0, 2,222, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 83,104,111,119, 88, + 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, + 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 3, 0, + 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 2, 0, 0, 0,120, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0,121, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, + 0, 52, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, + 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, + 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 51, 0, + 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 1, 0, + 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, + 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, 0, 0, 0, 18, 0, 0, + 0, 44, 0, 0, 0, 22, 0, 0, 0, 48, 0, 0, 0, 46, 0, 0, 0, 52, 0, 0, + 0, 50, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 55, 0, 0, + 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/menu.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/menu_be32.loh b/iup/srclua5/loh/menu_be32.loh new file mode 100755 index 0000000..6b81d0e --- /dev/null +++ b/iup/srclua5/loh/menu_be32.loh @@ -0,0 +1,122 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/menu_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/menu_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,109,101,110, +117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 27, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0,128, 74,131,194, 0, 73,132,194, 0, 73,131, 0, 64, 9, 0, 0, + 0,100,133, 0, 64, 9, 0, 0, 64,100,133,128, 64, 9, 0, 0,128,100,134, 0, + 64, 9, 0, 0,192,100,134,128, 64, 9, 0, 1, 0,100,135, 0, 64, 9, 0, 3, +192, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 4, 0, 69, 0, 0, 0,128, 0, 4, + 64,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 18, 4, 0, 0, 0, 5,110, +105, 99,107, 0, 4, 0, 0, 0, 5,109,101,110,117, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 4, 66, 79, 88, 0, 4, 0, 0, 0, 9, + 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, + 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 8,111,112,101,110, 95, + 99, 98, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 13,109,101,110,117, 99,108, +111,115,101, 95, 99, 98, 0, 4, 0, 0, 0, 6,112,111,112,117,112, 0, 4, 0, + 0, 0, 7, 97,112,112,101,110,100, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 7,115,104,111,119,120,121, + 0, 4, 0, 0, 0, 8,100,101,115,116,114,111,121, 0, 4, 0, 0, 0, 18,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, + 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105, +117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 16, 0, 3, 0, 7, 0, 0, 0, 6, 0, 0, 0,197, 0, 0, + 1, 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, 30, 0, 0, + 0, 1, 4, 0, 0, 0, 6, 80,111,112,117,112, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 16, 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2,120, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2,121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 2, 0, 5, 0, 0, 0, 5, + 0, 0, 0,133, 0, 0, 0,192, 0,128, 1, 0, 1,128, 64,156, 0,128, 0, 30, + 0, 0, 0, 1, 4, 0, 0, 0, 7, 65,112,112,101,110,100, 0, 0, 0, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5,101,108,101,109, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 44, + 0, 2, 0, 14, 0, 0, 0, 85, 0,128, 0,148, 0, 0, 0,193, 1, 0, 1, 0, + 0, 0, 1, 65,128, 18,128,224, 0, 0, 65,197, 0,129,130, 6, 1, 0,129,220, + 3,192,128, 23,128, 17, 64, 22, 0, 0, 1,202, 0, 0,193,199, 0, 1, 1,197, + 0,129,130, 6, 1, 1, 1,220,128, 1,128, 22, 0, 0, 67, 5, 5, 0, 3, 64, + 1, 0,131, 28, 6, 65, 64, 87,128, 0, 64, 22, 0, 0,195, 5, 5, 2,195, 9, + 0, 0,129,225,127,253,128, 22, 0, 0, 65,197, 0,129,130, 6, 4, 64, 2, 6, + 1, 0,129,220, 3,193,128, 23,128, 6, 0, 22, 0, 0, 65,197, 0,129,130, 6, + 4, 65,194, 6, 1, 0,129,220, 3,194, 0, 87,128, 1, 64, 22, 0, 0, 65,197, + 0,129,130, 6, 4, 65,194, 6, 1, 0,129,220, 3,193,128, 23,128, 3, 0, 22, + 0, 0,193,197, 0,129,130, 6, 4, 64, 2, 6,132,130, 1,201, 0, 0,193,197, + 0,129,130, 6, 4, 65,194, 6,133, 2, 1,201, 0, 2,193,197, 0, 0,194, 5, + 1, 0,129,220, 3, 1,192, 73,128, 5,192, 22, 0, 0, 65,197, 0,129,130, 6, + 4, 64, 2, 6, 1, 0,129,220, 3,193,128, 23,128, 4, 64, 22, 0, 0, 65,197, + 0,129,130, 6, 4, 65,194, 6, 1, 0,129,220, 3,195, 0, 23,128, 2,192, 22, + 0, 0,193,197, 0,129,130, 6, 4, 65,194, 6,128, 2, 1,201, 0, 0,193,197, + 0,129,130, 6, 4, 64, 2, 6,132,130, 1,201, 0, 3, 65,197, 0, 0,194, 5, + 1, 0,129,220, 3, 1,192, 73,127,236,192,223, 0, 3,128,197, 0,128, 0,221, + 0, 0, 0,222, 0,128, 0, 30, 0, 0, 0, 15, 3, 63,240, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 5,116,121,112,101, 0, 4, 0, 0, 0, 6,116, 97, 98,108, +101, 0, 4, 0, 0, 0, 8,105,116,101,109, 97,114,103, 0, 4, 0, 0, 0, 6, +112, 97,105,114,115, 0, 4, 0, 0, 0, 7,110,117,109, 98,101,114, 0, 4, 0, + 0, 0, 7,115,116,114,105,110,103, 0, 3, 64, 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 9,102,117,110, 99,116,105,111,110, 0, 4, 0, 0, 0, 6,116,105, +116,108,101, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, 0, + 5,105,116,101,109, 0, 4, 0, 0, 0, 9,117,115,101,114,100, 97,116, 97, 0, + 4, 0, 0, 0, 8,115,117, 98,109,101,110,117, 0, 4, 0, 0, 0, 5, 77,101, +110,117, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 23, 0, 0, 0, 24, 0, + 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, + 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, + 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, + 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, + 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, + 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, + 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, + 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 39, 0, + 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 24, 0, 0, 0, 43, 0, + 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 12, 0, 0, 0, 6, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 4, 97,114,103, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 2,110, 0, 0, 0, 0, 1, 0, + 0, 0, 84, 0, 0, 0, 12, 40,102,111,114, 32,105,110,100,101,120, 41, 0, 0, + 0, 0, 4, 0, 0, 0, 81, 0, 0, 0, 12, 40,102,111,114, 32,108,105,109,105, +116, 41, 0, 0, 0, 0, 4, 0, 0, 0, 81, 0, 0, 0, 11, 40,102,111,114, 32, +115,116,101,112, 41, 0, 0, 0, 0, 4, 0, 0, 0, 81, 0, 0, 0, 2,105, 0, + 0, 0, 0, 5, 0, 0, 0, 80, 0, 0, 0, 16, 40,102,111,114, 32,103,101,110, +101,114, 97,116,111,114, 41, 0, 0, 0, 0, 15, 0, 0, 0, 25, 0, 0, 0, 12, + 40,102,111,114, 32,115,116, 97,116,101, 41, 0, 0, 0, 0, 15, 0, 0, 0, 25, + 0, 0, 0, 14, 40,102,111,114, 32, 99,111,110,116,114,111,108, 41, 0, 0, 0, + 0, 15, 0, 0, 0, 25, 0, 0, 0, 2,117, 0, 0, 0, 0, 16, 0, 0, 0, 23, + 0, 0, 0, 2,118, 0, 0, 0, 0, 16, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 46, 0, 0, 0, 48, 0, 3, 0, 7, 0, 0, 0, 7, 0, 0, + 0,197, 0, 0, 1, 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 0,221, 0, 0, + 0,222, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 7, 83,104,111,119, 88, + 89, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, + 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, + 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 2,120, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2,121, + 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 50, 0, 0, 0, 52, 0, 1, 0, 3, 0, 0, 0, 5, 0, 0, 0, 69, 0, 0, 0, +128, 1, 0, 0, 93, 0, 0, 0, 94, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, + 0, 8, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, + 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, + 0, 1, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, + 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, 0, 0, 0, + 18, 0, 0, 0, 44, 0, 0, 0, 22, 0, 0, 0, 48, 0, 0, 0, 46, 0, 0, 0, + 52, 0, 0, 0, 50, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, + 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, + 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 9, 0, 0, 0, 26, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/menu_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/menu_be64.loh b/iup/srclua5/loh/menu_be64.loh new file mode 100755 index 0000000..d09ad33 --- /dev/null +++ b/iup/srclua5/loh/menu_be64.loh @@ -0,0 +1,134 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/menu_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/menu_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 27, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64, 0,133,100, 64, 0, 0, 9, 64,128,133,100,128, + 0, 0, 9, 64, 0,134,100,192, 0, 0, 9, 64,128,134,100, 0, 1, 0, 9, 64, + 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 4, 0,128, 0, + 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,109,101,110,117, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,111,112,101,110, 95, 99, 98, 0, 4, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,109,101, +110,117, 99,108,111,115,101, 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +112,111,112,117,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97,112,112,101,110, +100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,104,111,119,120,121, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 18, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105, +100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119, +105,100,103,101,116, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 16, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, + 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, + 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 0, 0, 0, 2, 0, 5, 5, 0, 0, 0, +133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, + 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 44, 0, 0, 0, 0, 2, 0, 14, + 85, 0, 0, 0,148, 0,128, 0,193, 0, 0, 0, 0, 1, 0, 1, 65, 1, 0, 0, +224,128, 18,128,197, 65, 0, 0, 6,130,129, 0,220,129, 0, 1, 23,128,192, 3, + 22, 64, 17,128,202, 1, 0, 0,199,193, 0, 0,197, 1, 1, 0, 6,130,129, 0, +220, 1, 1, 1, 22,128, 1,128, 5, 67, 0, 0, 64, 3, 0, 5, 28,131, 0, 1, + 87, 64, 65, 6, 22, 64, 0,128, 5,195, 0, 0, 9,195, 2, 5,225,129, 0, 0, + 22,128,253,127,197, 65, 0, 0, 6,130,129, 0, 6, 2, 64, 4,220,129, 0, 1, + 23,128,193, 3, 22, 0, 6,128,197, 65, 0, 0, 6,130,129, 0, 6,194, 65, 4, +220,129, 0, 1, 87, 0,194, 3, 22, 64, 1,128,197, 65, 0, 0, 6,130,129, 0, + 6,194, 65, 4,220,129, 0, 1, 23,128,193, 3, 22, 0, 3,128,197,193, 0, 0, + 6,130,129, 0, 6, 2, 64, 4,201, 1,130,132,197,193, 0, 0, 6,130,129, 0, + 6,194, 65, 4,201, 1, 2,133,197,193, 2, 0, 5,194, 0, 0,220,129, 0, 1, + 73,192, 1, 3, 22,192, 5,128,197, 65, 0, 0, 6,130,129, 0, 6, 2, 64, 4, +220,129, 0, 1, 23,128,193, 3, 22, 64, 4,128,197, 65, 0, 0, 6,130,129, 0, + 6,194, 65, 4,220,129, 0, 1, 23, 0,195, 3, 22,192, 2,128,197,193, 0, 0, + 6,130,129, 0, 6,194, 65, 4,201, 1, 2,128,197,193, 0, 0, 6,130,129, 0, + 6, 2, 64, 4,201, 1,130,132,197, 65, 3, 0, 5,194, 0, 0,220,129, 0, 1, + 73,192, 1, 3,223,192,236,127,197,128, 3, 0,221, 0,128, 0,222, 0, 0, 0, + 30, 0,128, 0, 15, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 5, 0, + 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +116, 97, 98,108,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,116,101,109, 97, +114,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112, 97,105,114,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,115,116,114,105,110,103, 0, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, + 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 97, 99,116,105,111,110, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,105,116,101, +109, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,117,115,101,114,100, 97,116, 97, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,115,117, 98,109,101,110,117, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0, 77,101,110,117, 0, 0, 0, 0, 0, 85, 0, 0, 0, 23, + 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, + 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, + 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, + 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, + 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, + 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, + 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 24, + 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 12, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 84, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 84, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 1, 0, 0, 0, 84, + 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110,100,101, +120, 41, 0, 4, 0, 0, 0, 81, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40, +102,111,114, 32,108,105,109,105,116, 41, 0, 4, 0, 0, 0, 81, 0, 0, 0, 11, + 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 4, 0, + 0, 0, 81, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 5, 0, 0, 0, + 80, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,103,101,110, +101,114, 97,116,111,114, 41, 0, 15, 0, 0, 0, 25, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 40,102,111,114, 32,115,116, 97,116,101, 41, 0, 15, 0, 0, 0, + 25, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32, 99,111,110, +116,114,111,108, 41, 0, 15, 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,117, 0, 16, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, +118, 0, 16, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 0, 3, 0, 7, 7, 0, 0, 0,197, 0, + 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, 0, 2,222, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, +104,111,119, 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 47, 0, 0, 0, 47, 0, + 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 48, 0, + 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, + 0, 52, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, + 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, + 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, + 0, 20, 0, 0, 0, 18, 0, 0, 0, 44, 0, 0, 0, 22, 0, 0, 0, 48, 0, 0, + 0, 46, 0, 0, 0, 52, 0, 0, 0, 50, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, + 0, 54, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, + 0, 55, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114, +108, 0, 9, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/menu_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/menu_le64.loh b/iup/srclua5/loh/menu_le64.loh new file mode 100755 index 0000000..a19667f --- /dev/null +++ b/iup/srclua5/loh/menu_le64.loh @@ -0,0 +1,134 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/menu_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/menu_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 27, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64, 0,133,100, 64, 0, 0, 9, 64,128,133,100,128, + 0, 0, 9, 64, 0,134,100,192, 0, 0, 9, 64,128,134,100, 0, 1, 0, 9, 64, + 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 4, 0,128, 0, + 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,109,101,110,117, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,111,112,101,110, 95, 99, 98, 0, 4, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,109,101, +110,117, 99,108,111,115,101, 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +112,111,112,117,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97,112,112,101,110, +100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,104,111,119,120,121, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 18, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105, +100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119, +105,100,103,101,116, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 16, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, + 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, + 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 0, 0, 0, 2, 0, 5, 5, 0, 0, 0, +133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, + 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 44, 0, 0, 0, 0, 2, 0, 14, + 85, 0, 0, 0,148, 0,128, 0,193, 0, 0, 0, 0, 1, 0, 1, 65, 1, 0, 0, +224,128, 18,128,197, 65, 0, 0, 6,130,129, 0,220,129, 0, 1, 23,128,192, 3, + 22, 64, 17,128,202, 1, 0, 0,199,193, 0, 0,197, 1, 1, 0, 6,130,129, 0, +220, 1, 1, 1, 22,128, 1,128, 5, 67, 0, 0, 64, 3, 0, 5, 28,131, 0, 1, + 87, 64, 65, 6, 22, 64, 0,128, 5,195, 0, 0, 9,195, 2, 5,225,129, 0, 0, + 22,128,253,127,197, 65, 0, 0, 6,130,129, 0, 6, 2, 64, 4,220,129, 0, 1, + 23,128,193, 3, 22, 0, 6,128,197, 65, 0, 0, 6,130,129, 0, 6,194, 65, 4, +220,129, 0, 1, 87, 0,194, 3, 22, 64, 1,128,197, 65, 0, 0, 6,130,129, 0, + 6,194, 65, 4,220,129, 0, 1, 23,128,193, 3, 22, 0, 3,128,197,193, 0, 0, + 6,130,129, 0, 6, 2, 64, 4,201, 1,130,132,197,193, 0, 0, 6,130,129, 0, + 6,194, 65, 4,201, 1, 2,133,197,193, 2, 0, 5,194, 0, 0,220,129, 0, 1, + 73,192, 1, 3, 22,192, 5,128,197, 65, 0, 0, 6,130,129, 0, 6, 2, 64, 4, +220,129, 0, 1, 23,128,193, 3, 22, 64, 4,128,197, 65, 0, 0, 6,130,129, 0, + 6,194, 65, 4,220,129, 0, 1, 23, 0,195, 3, 22,192, 2,128,197,193, 0, 0, + 6,130,129, 0, 6,194, 65, 4,201, 1, 2,128,197,193, 0, 0, 6,130,129, 0, + 6, 2, 64, 4,201, 1,130,132,197, 65, 3, 0, 5,194, 0, 0,220,129, 0, 1, + 73,192, 1, 3,223,192,236,127,197,128, 3, 0,221, 0,128, 0,222, 0, 0, 0, + 30, 0,128, 0, 15, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 5, 0, + 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +116, 97, 98,108,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,116,101,109, 97, +114,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112, 97,105,114,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,115,116,114,105,110,103, 0, 3, 0, 0, 0, 0, 0, 0, 0, 64, 4, + 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,116,105,111,110, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 97, 99,116,105,111,110, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,105,116,101, +109, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,117,115,101,114,100, 97,116, 97, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,115,117, 98,109,101,110,117, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0, 77,101,110,117, 0, 0, 0, 0, 0, 85, 0, 0, 0, 23, + 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, + 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, + 0, 0, 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, + 0, 0, 0, 33, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, + 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, + 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, + 0, 0, 0, 37, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, + 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 24, + 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 12, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 84, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 84, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 1, 0, 0, 0, 84, + 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110,100,101, +120, 41, 0, 4, 0, 0, 0, 81, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40, +102,111,114, 32,108,105,109,105,116, 41, 0, 4, 0, 0, 0, 81, 0, 0, 0, 11, + 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 4, 0, + 0, 0, 81, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 5, 0, 0, 0, + 80, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,103,101,110, +101,114, 97,116,111,114, 41, 0, 15, 0, 0, 0, 25, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 40,102,111,114, 32,115,116, 97,116,101, 41, 0, 15, 0, 0, 0, + 25, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32, 99,111,110, +116,114,111,108, 41, 0, 15, 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,117, 0, 16, 0, 0, 0, 23, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, +118, 0, 16, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 46, 0, 0, 0, 48, 0, 0, 0, 0, 3, 0, 7, 7, 0, 0, 0,197, 0, + 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, 0, 2,222, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83, +104,111,119, 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 47, 0, 0, 0, 47, 0, + 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 48, 0, + 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, + 0, 52, 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, + 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, + 0, 0, 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, + 0, 0, 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, + 0, 20, 0, 0, 0, 18, 0, 0, 0, 44, 0, 0, 0, 22, 0, 0, 0, 48, 0, 0, + 0, 46, 0, 0, 0, 52, 0, 0, 0, 50, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, + 0, 54, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, + 0, 55, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114, +108, 0, 9, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/menu_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/menu_le64w.loh b/iup/srclua5/loh/menu_le64w.loh new file mode 100755 index 0000000..afca571 --- /dev/null +++ b/iup/srclua5/loh/menu_le64w.loh @@ -0,0 +1,136 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/menu_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/menu_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 27, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73, 0,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64, 0,133,100, 64, 0, 0, 9, 64,128,133,100,128, + 0, 0, 9, 64, 0,134,100,192, 0, 0, 9, 64,128,134,100, 0, 1, 0, 9, 64, + 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 4, 0,128, 0, + 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,109,101,110,117, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,111,112,101,110, 95, 99, 98, 0, 4, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,109,101, +110,117, 99,108,111,115,101, 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, +112,111,112,117,112, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97,112,112,101,110, +100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101, +109,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,115,104,111,119,120,121, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 18, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105, +100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, + 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119, +105,100,103,101,116, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 16, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, + 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, + 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0,120, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 20, 0, 0, 0, 0, 2, 0, 5, 5, 0, 0, 0, +133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, + 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 44, 0, 0, 0, 0, 2, 0, 14, + 88, 0, 0, 0,133, 0, 0, 0,134, 64, 64, 1,192, 0,128, 0,156,128, 0, 1, +193,128, 0, 0, 0, 1, 0, 1, 65,129, 0, 0,224,128, 18,128,197,193, 0, 0, + 6,130,129, 0,220,129, 0, 1, 23, 0,192, 3, 22, 64, 17,128,202, 1, 0, 0, +199, 1, 1, 0,197, 65, 1, 0, 6,130,129, 0,220, 1, 1, 1, 22,128, 1,128, + 5,195, 0, 0, 64, 3, 0, 5, 28,131, 0, 1, 87,128, 65, 6, 22, 64, 0,128, + 5, 3, 1, 0, 9,195, 2, 5,225,129, 0, 0, 22,128,253,127,197,193, 0, 0, + 6,130,129, 0, 6,130, 64, 4,220,129, 0, 1, 23,192,193, 3, 22, 0, 6,128, +197,193, 0, 0, 6,130,129, 0, 6, 2, 66, 4,220,129, 0, 1, 87, 64,194, 3, + 22, 64, 1,128,197,193, 0, 0, 6,130,129, 0, 6, 2, 66, 4,220,129, 0, 1, + 23,192,193, 3, 22, 0, 3,128,197, 1, 1, 0, 6,130,129, 0, 6,130, 64, 4, +201, 1, 2,133,197, 1, 1, 0, 6,130,129, 0, 6, 2, 66, 4,201, 1,130,133, +197, 1, 3, 0, 5, 2, 1, 0,220,129, 0, 1, 73,192, 1, 3, 22,192, 5,128, +197,193, 0, 0, 6,130,129, 0, 6,130, 64, 4,220,129, 0, 1, 23,192,193, 3, + 22, 64, 4,128,197,193, 0, 0, 6,130,129, 0, 6, 2, 66, 4,220,129, 0, 1, + 23, 64,195, 3, 22,192, 2,128,197, 1, 1, 0, 6,130,129, 0, 6, 2, 66, 4, +201, 1, 2,129,197, 1, 1, 0, 6,130,129, 0, 6,130, 64, 4,201, 1, 2,133, +197,129, 3, 0, 5, 2, 1, 0,220,129, 0, 1, 73,192, 1, 3,223,192,236,127, +197,192, 3, 0,221, 0,128, 0,222, 0, 0, 0, 30, 0,128, 0, 16, 0, 0, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,103,101,116,110, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 5, + 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,105,116,101,109, 97,114,103, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112, 97, +105,114,115, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,117,109, 98,101,114, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,115,116,114,105,110,103, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 64, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,116,105, +111,110, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 5, 0, 0, 0, 0, + 0, 0, 0,105,116,101,109, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,117,115,101, +114,100, 97,116, 97, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,117, 98,109,101, +110,117, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 77,101,110,117, 0, 0, 0, 0, + 0, 88, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, 0, 23, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, + 0, 26, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, + 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, + 0, 29, 0, 0, 0, 29, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 33, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, + 0, 37, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 38, 0, 0, + 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 24, 0, 0, + 0, 43, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 12, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 87, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 87, + 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 0, 0, 0, 87, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110,100,101,120, 41, + 0, 7, 0, 0, 0, 84, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111, +114, 32,108,105,109,105,116, 41, 0, 7, 0, 0, 0, 84, 0, 0, 0, 11, 0, 0, + 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 7, 0, 0, 0, + 84, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 8, 0, 0, 0, 83, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,103,101,110,101,114, + 97,116,111,114, 41, 0, 18, 0, 0, 0, 28, 0, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 40,102,111,114, 32,115,116, 97,116,101, 41, 0, 18, 0, 0, 0, 28, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32, 99,111,110,116,114, +111,108, 41, 0, 18, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, +117, 0, 19, 0, 0, 0, 26, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, + 19, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 46, 0, 0, 0, 48, 0, 0, 0, 0, 3, 0, 7, 7, 0, 0, 0,197, 0, 0, 0, + 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,221, 0, 0, 2,222, 0, 0, 0, + 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 83,104,111, +119, 88, 89, 0, 0, 0, 0, 0, 7, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, + 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 52, + 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, + 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, + 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, + 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 20, + 0, 0, 0, 18, 0, 0, 0, 44, 0, 0, 0, 22, 0, 0, 0, 48, 0, 0, 0, 46, + 0, 0, 0, 52, 0, 0, 0, 50, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, + 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 9, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/menu_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/messagedlg.loh b/iup/srclua5/loh/messagedlg.loh new file mode 100755 index 0000000..1463b2d --- /dev/null +++ b/iup/srclua5/loh/messagedlg.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/messagedlg.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/messagedlg.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 16, 0, 0, 0, 64,109,101,115, +115, 97,103,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0,132, +100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133,100,128, 0, 0, + 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0, +128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, + 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 11, 0, 0, 0,109,101,115,115, 97, +103,101,100,108,103, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0,102,117,110, 99,110, + 97,109,101, 0, 4, 11, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, + 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0,112, +111,112,117,112, 0, 4, 8, 0, 0, 0,100,101,115,116,114,111,121, 0, 4, 14, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, 7, 6, 0, 0, 0,197, 0, 0, + 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, + 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0,120, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 1, 0, 3, 5, + 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, 0, 0, 1, 94, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, 68,101,115,116,114,111,121, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 22, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, + 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 11, 0, 0, 0, + 77,101,115,115, 97,103,101, 68,108,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 21, + 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, + 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, + 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114, +108, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/messagedlg.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/messagedlg_be32.loh b/iup/srclua5/loh/messagedlg_be32.loh new file mode 100755 index 0000000..d073d9f --- /dev/null +++ b/iup/srclua5/loh/messagedlg_be32.loh @@ -0,0 +1,54 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/messagedlg_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/messagedlg_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 16, 64,109,101,115, +115, 97,103,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 0, 0, 0, 22, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69, +129, 0, 64, 9,130, 65, 64, 9,131, 65,192, 9, 0, 0, 0, 74,132, 0, 64, 9, + 0, 0, 0,100,132,128, 64, 9, 0, 0, 64,100,133, 0, 64, 9, 0, 0,128,100, +133,128, 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 3, 64, 69, + 0, 0, 0,128, 0, 3,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 15, + 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 11,109,101,115,115, 97, +103,101,100,108,103, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9,102,117,110, 99,110, + 97,109,101, 0, 4, 0, 0, 0, 11, 77,101,115,115, 97,103,101, 68,108,103, 0, + 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 6,112, +111,112,117,112, 0, 4, 0, 0, 0, 8,100,101,115,116,114,111,121, 0, 4, 0, + 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, + 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 3, 0, 7, 0, 0, 0, 6, 0, 0, 0, +197, 0, 0, 1, 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, + 30, 0, 0, 0, 1, 4, 0, 0, 0, 6, 80,111,112,117,112, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2,120, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 0, 2,121, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 1, 0, 3, 0, + 0, 0, 5, 0, 0, 0, 69, 0, 0, 0,128, 1, 0, 0, 93, 0, 0, 0, 94, 0, +128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 8, 68,101,115,116,114,111,121, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 7,104, 97,110,100, +108,101, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 20, 0, 0, 0, 22, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0, +128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 11, + 77,101,115,115, 97,103,101, 68,108,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, 0, + 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, + 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 22, 0, 0, 0, 20, 0, 0, 0, + 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114, +108, 0, 0, 0, 0, 8, 0, 0, 0, 21, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/messagedlg_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/messagedlg_be64.loh b/iup/srclua5/loh/messagedlg_be64.loh new file mode 100755 index 0000000..dd1d7bf --- /dev/null +++ b/iup/srclua5/loh/messagedlg_be64.loh @@ -0,0 +1,60 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/messagedlg_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/messagedlg_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,109,101,115,115, 97,103,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, + 9, 64, 0,132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133, +100,128, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,109,101,115,115, 97,103,101,100,108,103, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101, +115,116,114,111,121, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, + 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, + 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, + 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, + 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 22, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, + 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, + 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, + 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/messagedlg_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/messagedlg_le64.loh b/iup/srclua5/loh/messagedlg_le64.loh new file mode 100755 index 0000000..78dc095 --- /dev/null +++ b/iup/srclua5/loh/messagedlg_le64.loh @@ -0,0 +1,60 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/messagedlg_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/messagedlg_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,109,101,115,115, 97,103,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, + 9, 64, 0,132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133, +100,128, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,109,101,115,115, 97,103,101,100,108,103, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101, +115,116,114,111,121, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, + 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, + 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, + 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, + 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 22, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, + 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, + 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, + 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/messagedlg_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/messagedlg_le64w.loh b/iup/srclua5/loh/messagedlg_le64w.loh new file mode 100755 index 0000000..2d0aac4 --- /dev/null +++ b/iup/srclua5/loh/messagedlg_le64w.loh @@ -0,0 +1,60 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/messagedlg_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/messagedlg_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,109,101,115,115, 97,103,101,100,108,103, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, + 9, 64, 0,132,100, 0, 0, 0, 9, 64,128,132,100, 64, 0, 0, 9, 64, 0,133, +100,128, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,109,101,115,115, 97,103,101,100,108,103, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,112,111,112,117,112, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,100,101, +115,116,114,111,121, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 3, 0, + 7, 6, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, + 1,220, 64, 0, 2, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 80,111,112,117,112, 0, 0, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,120, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,121, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, + 0, 0, 0, 0, 1, 0, 3, 5, 0, 0, 0, 69, 0, 0, 0,128, 0, 0, 0, 93, + 0, 0, 1, 94, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0, 68,101,115,116,114,111,121, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 1, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 22, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, + 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0, 77,101,115,115, 97,103,101, 68,108,103, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, + 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, + 0, 22, 0, 0, 0, 20, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/messagedlg_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/multiline.loh b/iup/srclua5/loh/multiline.loh new file mode 100755 index 0000000..6792602 --- /dev/null +++ b/iup/srclua5/loh/multiline.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/multiline.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/multiline.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 15, 0, 0, 0, 64,109,117,108, +116,105,108,105,110,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9, +128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, + 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, + 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0,109,117,108,116,105,108,105,110,101, 0, 4, 7, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, + 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 97, 99,116,105, +111,110, 0, 4, 3, 0, 0, 0,110,115, 0, 4, 9, 0, 0, 0,102,117,110, 99, +110, 97,109,101, 0, 4, 10, 0, 0, 0, 77,117,108,116,105, 76,105,110,101, 0, + 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, + 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, + 10, 0, 0, 0, 77,117,108,116,105, 76,105,110,101, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, + 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/multiline.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/multiline_be32.loh b/iup/srclua5/loh/multiline_be32.loh new file mode 100755 index 0000000..7c106df --- /dev/null +++ b/iup/srclua5/loh/multiline_be32.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/multiline_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/multiline_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 15, 64,109,117,108, +116,105,108,105,110,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 0, 0, 0, 19, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, + 0, 64, 9,130, 65, 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9,132, +194,128, 9, 0, 0, 0,100,133,128, 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, + 0, 64, 92, 0, 3, 64, 69, 0, 0, 0,128, 0, 3,128,193, 1,128, 64, 92, 0, +128, 0, 30, 0, 0, 0, 15, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, + 0, 10,109,117,108,116,105,108,105,110,101, 0, 4, 0, 0, 0, 7,112, 97,114, +101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, + 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, + 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 7, 97, 99,116,105, +111,110, 0, 4, 0, 0, 0, 3,110,115, 0, 4, 0, 0, 0, 9,102,117,110, 99, +110, 97,109,101, 0, 4, 0, 0, 0, 10, 77,117,108,116,105, 76,105,110,101, 0, + 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 2, 0, 3, 0, 0, 0, 4, 0, + 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, + 0, 0, 0, 10, 77,117,108,116,105, 76,105,110,101, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, + 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, + 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 9, 0, 0, 0, + 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/multiline_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/multiline_be64.loh b/iup/srclua5/loh/multiline_be64.loh new file mode 100755 index 0000000..c386eb2 --- /dev/null +++ b/iup/srclua5/loh/multiline_be64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/multiline_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/multiline_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,109,117,108,116,105,108,105,110,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, + 64, 0,131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, + 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +110,105, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105,108, +105,110,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 77,117, +108,116,105, 76,105,110,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, + 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 77,117,108,116, +105, 76,105,110,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/multiline_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/multiline_le64.loh b/iup/srclua5/loh/multiline_le64.loh new file mode 100755 index 0000000..cbae6db --- /dev/null +++ b/iup/srclua5/loh/multiline_le64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/multiline_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/multiline_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,109,117,108,116,105,108,105,110,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, + 64, 0,131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, + 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +110,105, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105,108, +105,110,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 77,117, +108,116,105, 76,105,110,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, + 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 77,117,108,116, +105, 76,105,110,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/multiline_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/multiline_le64w.loh b/iup/srclua5/loh/multiline_le64w.loh new file mode 100755 index 0000000..8c729f6 --- /dev/null +++ b/iup/srclua5/loh/multiline_le64w.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/multiline_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/multiline_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,109,117,108,116,105,108,105,110,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, + 64, 0,131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, + 64,128, 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, +110,105, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105,108, +105,110,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 77,117, +108,116,105, 76,105,110,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, + 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 77,117,108,116, +105, 76,105,110,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/multiline_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/normalizer.loh b/iup/srclua5/loh/normalizer.loh new file mode 100755 index 0000000..1e757fc --- /dev/null +++ b/iup/srclua5/loh/normalizer.loh @@ -0,0 +1,63 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/normalizer.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/normalizer.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 16, 0, 0, 0, 64,110,111,114, +109, 97,108,105,122,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, + 9, 64,128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, + 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, + 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 11, + 0, 0, 0,110,111,114,109, 97,108,105,122,101,114, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0,115,101, +116, 65,116,116,114,105, 98,117,116,101,115, 0, 4, 14, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 21, + 0, 0, 0, 0, 2, 0, 10, 23, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, + 65, 0, 0,156,128,128, 1,212, 0,128, 0, 1,129, 0, 0, 64, 1,128, 1,129, +129, 0, 0, 32,129, 1,128, 5,194, 0, 0, 70,194,129, 0, 28,130, 0, 1, 23, + 0, 65, 4, 22, 64, 0,128, 6,194,129, 0, 9, 0,130,130, 31,193,253,127, 5, +129, 1, 0, 6,193, 65, 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, 1, 30, + 0,128, 0, 8, 0, 0, 0, 4, 7, 0, 0, 0,114, 97,119,103,101,116, 0, 4, + 7, 0, 0, 0,104, 97,110,100,108,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 4, 12, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 97,100, +100, 99,111,110,116,114,111,108, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, + 0, 4, 14, 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 20, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 8, 0, 0, 0, 7, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 22, 0, 0, 0, 7, + 0, 0, 0,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 22, 0, 0, 0, 2, 0, + 0, 0,110, 0, 5, 0, 0, 0, 22, 0, 0, 0, 12, 0, 0, 0, 40,102,111,114, + 32,105,110,100,101,120, 41, 0, 8, 0, 0, 0, 17, 0, 0, 0, 12, 0, 0, 0, + 40,102,111,114, 32,108,105,109,105,116, 41, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 11, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 2, 0, 0, 0,105, 0, 9, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, + 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 11, 0, 0, 0, 78,111,114,109, 97,108,105,122,101,114, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 19, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 21, 0, 0, 0, 12, + 0, 0, 0, 25, 0, 0, 0, 23, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/normalizer.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/normalizer_be32.loh b/iup/srclua5/loh/normalizer_be32.loh new file mode 100755 index 0000000..ecdb222 --- /dev/null +++ b/iup/srclua5/loh/normalizer_be32.loh @@ -0,0 +1,63 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/normalizer_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/normalizer_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 16, 64,110,111,114, +109, 97,108,105,122,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 0, 0, 0, 19, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69, +129, 0, 64, 9,130, 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100, +131,128, 64, 9, 0, 0, 64,100,132, 0, 64, 9, 0, 2, 64, 69, 0, 0, 0,128, + 1, 0, 64, 92, 0, 2,128, 69, 0, 0, 0,128, 0, 2,192,193, 1,128, 64, 92, + 0,128, 0, 30, 0, 0, 0, 12, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, + 0, 0, 11,110,111,114,109, 97,108,105,122,101,114, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, + 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, + 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 14,115,101, +116, 65,116,116,114,105, 98,117,116,101,115, 0, 4, 0, 0, 0, 14, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32, +119,105,100,103,101,116, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 12, 0, + 0, 0, 21, 0, 2, 0, 10, 0, 0, 0, 23, 0, 0, 0,133, 0, 0, 0,192, 0, + 0, 65, 1, 1,128,128,156, 0,128, 0,212, 0, 0,129, 1, 1,128, 1, 64, 0, + 0,129,129,128, 1,129, 32, 0, 0,194, 5, 0,129,194, 70, 1, 0,130, 28, 4, + 65, 0, 23,128, 0, 64, 22, 0,129,194, 6,130,130, 0, 9,127,253,193, 31, 0, + 1,129, 5, 2, 65,193, 6, 0, 0, 1, 64, 0,128, 1,128, 1,128, 65, 28, 0, +128, 0, 30, 0, 0, 0, 8, 4, 0, 0, 0, 7,114, 97,119,103,101,116, 0, 4, + 0, 0, 0, 7,104, 97,110,100,108,101, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 12,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 0, 0, + 0, 11,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 0, 0, 0, 11, 97,100, +100, 99,111,110,116,114,111,108, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, + 0, 4, 0, 0, 0, 14,115,101,116, 65,116,116,114,105, 98,117,116,101,115, 0, + 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, + 0, 0, 0, 8, 0, 0, 0, 7,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 4, 0, 0, 0, 22, 0, 0, + 0, 2,110, 0, 0, 0, 0, 5, 0, 0, 0, 22, 0, 0, 0, 12, 40,102,111,114, + 32,105,110,100,101,120, 41, 0, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 12, + 40,102,111,114, 32,108,105,109,105,116, 41, 0, 0, 0, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 11, 40,102,111,114, 32,115,116,101,112, 41, 0, 0, 0, 0, 8, 0, + 0, 0, 17, 0, 0, 0, 2,105, 0, 0, 0, 0, 9, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 2, 0, 3, 0, 0, 0, + 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 11, 78,111,114,109, 97,108,105,122,101,114, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, + 25, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 21, 0, + 0, 0, 12, 0, 0, 0, 25, 0, 0, 0, 23, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, + 0, 0, 28, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, + 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/normalizer_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/normalizer_be64.loh b/iup/srclua5/loh/normalizer_be64.loh new file mode 100755 index 0000000..2b0a199 --- /dev/null +++ b/iup/srclua5/loh/normalizer_be64.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/normalizer_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/normalizer_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,110,111,114,109, 97,108,105,122,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, + 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,110,111,114,109, 97, +108,105,122,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116, +114,105, 98,117,116,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, + 2, 0, 10, 23, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, 65, 0, 0,156, +128,128, 1,212, 0,128, 0, 1,129, 0, 0, 64, 1,128, 1,129,129, 0, 0, 32, +129, 1,128, 5,194, 0, 0, 70,194,129, 0, 28,130, 0, 1, 23, 0, 65, 4, 22, + 64, 0,128, 6,194,129, 0, 9, 0,130,130, 31,193,253,127, 5,129, 1, 0, 6, +193, 65, 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, 1, 30, 0,128, 0, 8, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103,101,116, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 3, 0, 0, 0, 0, + 0, 0,240, 63, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97, +110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 97,100,100, 99,111,110, +116,114,111,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117, +116,101,115, 0, 0, 0, 0, 0, 23, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, + 21, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, + 99,116, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 22, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, + 97,110,100,108,101, 0, 4, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,110, 0, 5, 0, 0, 0, 22, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 40,102,111,114, 32,105,110,100,101,120, 41, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,108,105,109,105,116, 41, 0, + 8, 0, 0, 0, 17, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, + 32,115,116,101,112, 41, 0, 8, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0,105, 0, 9, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, + 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 78,111,114,109, 97,108,105,122,101,114, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, + 0, 0, 0, 9, 0, 0, 0, 21, 0, 0, 0, 12, 0, 0, 0, 25, 0, 0, 0, 23, + 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 1, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/normalizer_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/normalizer_le64.loh b/iup/srclua5/loh/normalizer_le64.loh new file mode 100755 index 0000000..cfaf13a --- /dev/null +++ b/iup/srclua5/loh/normalizer_le64.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/normalizer_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/normalizer_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,110,111,114,109, 97,108,105,122,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, + 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,110,111,114,109, 97, +108,105,122,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116, +114,105, 98,117,116,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, + 2, 0, 10, 23, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, 65, 0, 0,156, +128,128, 1,212, 0,128, 0, 1,129, 0, 0, 64, 1,128, 1,129,129, 0, 0, 32, +129, 1,128, 5,194, 0, 0, 70,194,129, 0, 28,130, 0, 1, 23, 0, 65, 4, 22, + 64, 0,128, 6,194,129, 0, 9, 0,130,130, 31,193,253,127, 5,129, 1, 0, 6, +193, 65, 2, 64, 1, 0, 0,128, 1,128, 0, 28, 65,128, 1, 30, 0,128, 0, 8, + 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,114, 97,119,103,101,116, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 3, 0, 0, 0, 0, + 0, 0,240, 63, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, 97, +110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 97,100,100, 99,111,110, +116,114,111,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116,114,105, 98,117, +116,101,115, 0, 0, 0, 0, 0, 23, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, + 21, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, + 99,116, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 22, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, + 97,110,100,108,101, 0, 4, 0, 0, 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0,110, 0, 5, 0, 0, 0, 22, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 40,102,111,114, 32,105,110,100,101,120, 41, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,108,105,109,105,116, 41, 0, + 8, 0, 0, 0, 17, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, + 32,115,116,101,112, 41, 0, 8, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0,105, 0, 9, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, + 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 78,111,114,109, 97,108,105,122,101,114, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, + 0, 25, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, + 0, 0, 0, 9, 0, 0, 0, 21, 0, 0, 0, 12, 0, 0, 0, 25, 0, 0, 0, 23, + 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, + 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 1, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/normalizer_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/normalizer_le64w.loh b/iup/srclua5/loh/normalizer_le64w.loh new file mode 100755 index 0000000..e89daa2 --- /dev/null +++ b/iup/srclua5/loh/normalizer_le64w.loh @@ -0,0 +1,72 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/normalizer_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/normalizer_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,110,111,114,109, 97,108,105,122,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0, +128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, + 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,105, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,110,111,114,109, 97, +108,105,122,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116, +114,105, 98,117,116,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, + 2, 0, 10, 26, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 1, 65, 0, 0,156, +128,128, 1,197,128, 0, 0,198,192,192, 1, 0, 1,128, 0,220,128, 0, 1, 1, + 1, 1, 0, 64, 1,128, 1,129, 1, 1, 0, 32,129, 1,128, 5, 66, 1, 0, 70, +194,129, 0, 28,130, 0, 1, 23,128, 65, 4, 22, 64, 0,128, 6,194,129, 0, 9, + 0,130,131, 31,193,253,127, 5, 1, 2, 0, 6, 65, 66, 2, 64, 1, 0, 0,128, + 1,128, 0, 28, 65,128, 1, 30, 0,128, 0, 10, 0, 0, 0, 4, 7, 0, 0, 0, + 0, 0, 0, 0,114, 97,119,103,101,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108, +101, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,103,101,116,110, 0, 3, 0, 0, 0, + 0, 0, 0,240, 63, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 71,101,116, + 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,104, + 97,110,100,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 97,100,100, 99,111, +110,116,114,111,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,101,116, 65,116,116,114,105, 98, +117,116,101,115, 0, 0, 0, 0, 0, 26, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, + 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 8, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0,111, 98,106,101, 99,116, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 4, + 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 8, 0, 0, + 0, 25, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,105,110, +100,101,120, 41, 0, 11, 0, 0, 0, 20, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, + 0, 40,102,111,114, 32,108,105,109,105,116, 41, 0, 11, 0, 0, 0, 20, 0, 0, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 40,102,111,114, 32,115,116,101,112, 41, 0, + 11, 0, 0, 0, 20, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 12, 0, + 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, + 0, 0, 25, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0, +128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0, 78,111,114,109, 97,108,105,122,101,114, 0, 0, 0, 0, 0, 4, 0, + 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 25, 0, 0, 0, 2, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, + 21, 0, 0, 0, 12, 0, 0, 0, 25, 0, 0, 0, 23, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, + 28, 0, 0, 0, 28, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/normalizer_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/olecontrol.loh b/iup/srclua5/loh/olecontrol.loh new file mode 100755 index 0000000..474d668 --- /dev/null +++ b/iup/srclua5/loh/olecontrol.loh @@ -0,0 +1,79 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluaole51/olecontrol.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluaole51/olecontrol.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 16, 0, 0, 0, 64,111,108,101, + 99,111,110,116,114,111,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 22, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0,132, + 9,128,194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134,100, 64, 0, 0, + 9, 64, 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 0, 4, 0, +128, 0, 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 18, 0, 0, 0, + 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 11, 0, 0, 0,111,108,101, 99,111, +110,116,114,111,108, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0,115, 0, 4, 9, 0, 0, 0,102,117,110, 99, +110, 97,109,101, 0, 4, 11, 0, 0, 0, 79,108,101, 67,111,110,116,114,111,108, + 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, +105,110, 99,108,117,100,101, 0, 4, 9, 0, 0, 0,105,117,112,111,108,101, 46, +104, 0, 4, 10, 0, 0, 0,101,120,116,114, 97, 99,111,100,101, 0, 4,164, 1, + 0, 0, 32, 10,105,110,116, 32,105,117,112,111,108,101,108,117, 97, 95,111,112, +101,110, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, + 32,105,102, 32, 40,105,117,112,108,117, 97, 95,111,112,101,110, 99, 97,108,108, + 95,105,110,116,101,114,110, 97,108, 40, 76, 41, 41, 10, 32, 32, 32, 32, 73,117, +112, 79,108,101, 67,111,110,116,114,111,108, 79,112,101,110, 40, 41, 59, 10, 32, + 32, 32, 32, 10, 32, 32,105,117,112,108,117, 97, 95, 99,104, 97,110,103,101, 69, +110,118, 40, 76, 41, 59, 10, 32, 32,105,117,112,111,108,101, 99,111,110,116,114, +111,108,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10, 32, 32,105,117,112, +108,117, 97, 95,114,101,116,117,114,110, 69,110,118, 40, 76, 41, 59, 10, 32, 32, +114,101,116,117,114,110, 32, 48, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105, +103, 97,116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114, +101, 34,105,117,112,108,117, 97,111,108,101, 34, 32, 42, 47, 10,105,110,116, 32, +108,117, 97,111,112,101,110, 95,105,117,112,108,117, 97,111,108,101, 40,108,117, + 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117, +114,110, 32,105,117,112,111,108,101,108,117, 97, 95,111,112,101,110, 40, 76, 41, + 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116, +111, 32,117,115,101, 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97, +111,108,101, 53, 49, 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101, +110, 95,105,117,112,108,117, 97,111,108,101, 53, 49, 40,108,117, 97, 95, 83,116, + 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105, +117,112,111,108,101,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, + 10, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 13, 0, 0, 0, 67,114,101, 97,116,101, 76,117, 97, 67, 79, 77, 0, 4, + 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 38, 0, 0, 0, 40, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 11, 0, 0, 0, 79,108,101, 67,111,110,116,114,111,108, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 39, 0, 0, 0, + 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 42, 0, 0, 0, 51, 0, 0, 0, 0, 1, 0, 5, 15, 0, 0, 0, 69, 0, + 0, 0, 90, 0, 0, 0, 22,128, 2,128, 70, 64, 64, 0, 90, 0, 0, 0, 22,192, + 1,128,133, 0, 0, 0,134,192, 64, 1,197, 0, 0, 0,198, 0,193, 1, 0, 1, +128, 0,220, 0, 0, 1,156,128, 0, 0, 9,128, 0,129, 30, 0,128, 0, 5, 0, + 0, 0, 4, 7, 0, 0, 0,108,117, 97, 99,111,109, 0, 4, 9, 0, 0, 0,105, +117,110,107,110,111,119,110, 0, 4, 4, 0, 0, 0, 99,111,109, 0, 4, 13, 0, + 0, 0, 67,114,101, 97,116,101, 76,117, 97, 67, 79, 77, 0, 4, 15, 0, 0, 0, + 73,109,112,111,114,116, 73, 85,110,107,110,111,119,110, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, + 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 51, + 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 5, 0, 0, 0,112,117,110,107, 0, 4, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, + 0, 0, 0, 10, 0, 0, 0, 35, 0, 0, 0, 40, 0, 0, 0, 38, 0, 0, 0, 51, + 0, 0, 0, 42, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, + 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 10, 0, 0, 0, 21, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluaole51/olecontrol.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/olecontrol_be64.loh b/iup/srclua5/loh/olecontrol_be64.loh new file mode 100755 index 0000000..6599d53 --- /dev/null +++ b/iup/srclua5/loh/olecontrol_be64.loh @@ -0,0 +1,85 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluaole51/olecontrol_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iupluaole51/olecontrol_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,111,108,101, 99,111,110,116,114,111,108, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 22, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, + 9, 64, 0,132, 9,128,194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, +100, 64, 0, 0, 9, 64, 0,135, 69,192, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69, 0, 4, 0,128, 0, 0, 0,193, 64, 4, 0, 92, 64,128, 1, 30, 0,128, 0, + 18, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 11, + 0, 0, 0, 0, 0, 0, 0,111,108,101, 99,111,110,116,114,111,108, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109,101, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0, 79,108,101, 67,111,110,116,114,111,108, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,105,117,112,111,108,101, 46,104, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,101, +120,116,114, 97, 99,111,100,101, 0, 4,164, 1, 0, 0, 0, 0, 0, 0, 32, 10, +105,110,116, 32,105,117,112,111,108,101,108,117, 97, 95,111,112,101,110, 40,108, +117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,105,102, 32, + 40,105,117,112,108,117, 97, 95,111,112,101,110, 99, 97,108,108, 95,105,110,116, +101,114,110, 97,108, 40, 76, 41, 41, 10, 32, 32, 32, 32, 73,117,112, 79,108,101, + 67,111,110,116,114,111,108, 79,112,101,110, 40, 41, 59, 10, 32, 32, 32, 32, 10, + 32, 32,105,117,112,108,117, 97, 95, 99,104, 97,110,103,101, 69,110,118, 40, 76, + 41, 59, 10, 32, 32,105,117,112,111,108,101, 99,111,110,116,114,111,108,108,117, + 97, 95,111,112,101,110, 40, 76, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95, +114,101,116,117,114,110, 69,110,118, 40, 76, 41, 59, 10, 32, 32,114,101,116,117, +114,110, 32, 48, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105,103, 97,116,111, +114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114,101, 34,105,117, +112,108,117, 97,111,108,101, 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97,111, +112,101,110, 95,105,117,112,108,117, 97,111,108,101, 40,108,117, 97, 95, 83,116, + 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105, +117,112,111,108,101,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, + 10, 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32,117,115, +101, 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,111,108,101, 53, + 49, 34, 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117, +112,108,117, 97,111,108,101, 53, 49, 40,108,117, 97, 95, 83,116, 97,116,101, 42, + 32, 76, 41, 10,123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,111,108, +101,108,117, 97, 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 0, 4, 14, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 76,117, 97, 67, + 79, 77, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 38, 0, 0, 0, 40, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 79,108,101, 67,111,110,116,114, +111,108, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, + 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 39, 0, 0, 0, 40, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, + 0, 0, 51, 0, 0, 0, 0, 1, 0, 5, 15, 0, 0, 0, 69, 0, 0, 0, 90, 0, + 0, 0, 22,128, 2,128, 70, 64, 64, 0, 90, 0, 0, 0, 22,192, 1,128,133, 0, + 0, 0,134,192, 64, 1,197, 0, 0, 0,198, 0,193, 1, 0, 1,128, 0,220, 0, + 0, 1,156,128, 0, 0, 9,128, 0,129, 30, 0,128, 0, 5, 0, 0, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,108,117, 97, 99,111,109, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,105,117,110,107,110,111,119,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0, 99,111,109, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, + 76,117, 97, 67, 79, 77, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0, 73,109,112,111, +114,116, 73, 85,110,107,110,111,119,110, 0, 0, 0, 0, 0, 15, 0, 0, 0, 45, + 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 47, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 51, 0, 0, 0, 2, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,112,117,110,107, 0, 4, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, + 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 35, 0, 0, 0, 40, 0, 0, 0, 38, + 0, 0, 0, 51, 0, 0, 0, 42, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 53, + 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 10, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluaole51/olecontrol_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/olecontrol_le64w.loh b/iup/srclua5/loh/olecontrol_le64w.loh new file mode 100755 index 0000000..a8ec614 --- /dev/null +++ b/iup/srclua5/loh/olecontrol_le64w.loh @@ -0,0 +1,80 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluaole51/olecontrol_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluaole51/olecontrol_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 64,111,108,101, 99,111,110,116,114,111,108, 46,108,117, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 4, 20, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, + 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, + 9, 64, 0,132, 9,128,194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, + 69,128, 3, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0, +193, 0, 4, 0, 92, 64,128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, + 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,111, +108,101, 99,111,110,116,114,111,108, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 79,108, +101, 67,111,110,116,114,111,108, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,105,117,112,111,108,101, 46, +104, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97, 99,111,100,101, + 0, 4,164, 1, 0, 0, 0, 0, 0, 0, 32, 10,105,110,116, 32,105,117,112,111, +108,101,108,117, 97, 95,111,112,101,110, 40,108,117, 97, 95, 83,116, 97,116,101, + 42, 32, 76, 41, 10,123, 10, 32, 32,105,102, 32, 40,105,117,112,108,117, 97, 95, +111,112,101,110, 99, 97,108,108, 95,105,110,116,101,114,110, 97,108, 40, 76, 41, + 41, 10, 32, 32, 32, 32, 73,117,112, 79,108,101, 67,111,110,116,114,111,108, 79, +112,101,110, 40, 41, 59, 10, 32, 32, 32, 32, 10, 32, 32,105,117,112,108,117, 97, + 95, 99,104, 97,110,103,101, 69,110,118, 40, 76, 41, 59, 10, 32, 32,105,117,112, +111,108,101, 99,111,110,116,114,111,108,108,117, 97, 95,111,112,101,110, 40, 76, + 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95,114,101,116,117,114,110, 69,110, +118, 40, 76, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 48, 59, 10,125, 10, + 10, 47, 42, 32,111, 98,108,105,103, 97,116,111,114,121, 32,116,111, 32,117,115, +101, 32,114,101,113,117,105,114,101, 34,105,117,112,108,117, 97,111,108,101, 34, + 32, 42, 47, 10,105,110,116, 32,108,117, 97,111,112,101,110, 95,105,117,112,108, +117, 97,111,108,101, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10, +123, 10, 32, 32,114,101,116,117,114,110, 32,105,117,112,111,108,101,108,117, 97, + 95,111,112,101,110, 40, 76, 41, 59, 10,125, 10, 10, 47, 42, 32,111, 98,108,105, +103, 97,116,111,114,121, 32,116,111, 32,117,115,101, 32,114,101,113,117,105,114, +101, 34,105,117,112,108,117, 97,111,108,101, 53, 49, 34, 32, 42, 47, 10,105,110, +116, 32,108,117, 97,111,112,101,110, 95,105,117,112,108,117, 97,111,108,101, 53, + 49, 40,108,117, 97, 95, 83,116, 97,116,101, 42, 32, 76, 41, 10,123, 10, 32, 32, +114,101,116,117,114,110, 32,105,117,112,111,108,101,108,117, 97, 95,111,112,101, +110, 40, 76, 41, 59, 10,125, 10, 10, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 51, 0, 0, + 0, 0, 2, 0, 7, 19, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,156,128, 0, + 1,197,128, 0, 0,218, 0, 0, 0, 22,128, 2,128,198,192, 64, 1,218, 0, 0, + 0, 22,192, 1,128, 5,129, 0, 0, 6, 65, 65, 2, 69,129, 0, 0, 70,129,193, + 2,128, 1,128, 1, 92, 1, 0, 1, 28,129, 0, 0,137, 0, 1,130,158, 0, 0, + 1, 30, 0,128, 0, 7, 0, 0, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 79,108, +101, 67,111,110,116,114,111,108, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 7, + 0, 0, 0, 0, 0, 0, 0,108,117, 97, 99,111,109, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0,105,117,110,107,110,111,119,110, 0, 4, 4, 0, 0, 0, 0, 0, 0, + 0, 99,111,109, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 77, 97,107,101, 76,117, + 97, 67, 79, 77, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 77, 97,107,101, 73, 85, +110,107,110,111,119,110, 0, 0, 0, 0, 0, 19, 0, 0, 0, 39, 0, 0, 0, 39, + 0, 0, 0, 39, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 44, + 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 99,116,108, 0, 3, 0, 0, 0, 18, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0,112,117,110,107, 0, 7, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 10, 0, + 0, 0, 35, 0, 0, 0, 51, 0, 0, 0, 38, 0, 0, 0, 53, 0, 0, 0, 53, 0, + 0, 0, 53, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, + 0, 0, 54, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116, +114,108, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluaole51/olecontrol_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/pplot.loh b/iup/srclua5/loh/pplot.loh new file mode 100755 index 0000000..34e0b43 --- /dev/null +++ b/iup/srclua5/loh/pplot.loh @@ -0,0 +1,58 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua_pplot51/pplot.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua_pplot51/pplot.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,112,112,108, +111,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 31, + 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 9,192, 65,131, 74,192, 2, 0, 73,128,194,132, 73, 64,193,133, 73, + 64, 65,134, 73,128,195,134, 73,128,195,135, 73, 64, 68,136, 73, 64, 65,137, 73, + 64,193,137, 73, 64, 69,138, 73, 64, 65,139, 73, 64,193,139, 9, 64, 0,132, 9, + 64, 70,140, 9,192, 70,141,100, 0, 0, 0, 9, 64, 0,142, 69, 64, 7, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69,128, 7, 0,128, 0, 0, 0,193,192, 7, 0, 92, + 64,128, 1, 30, 0,128, 0, 32, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, + 0, 4, 6, 0, 0, 0,112,112,108,111,116, 0, 4, 7, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, + 0,102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 80, 80,108,111,116, + 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, +115,101,108,101, 99,116, 95, 99, 98, 0, 4, 6, 0, 0, 0,110,110,102,102,110, + 0, 4, 15, 0, 0, 0,115,101,108,101, 99,116, 98,101,103,105,110, 95, 99, 98, + 0, 4, 13, 0, 0, 0,115,101,108,101, 99,116,101,110,100, 95, 99, 98, 0, 4, + 11, 0, 0, 0,112,114,101,100,114, 97,119, 95, 99, 98, 0, 4, 2, 0, 0, 0, +110, 0, 4, 12, 0, 0, 0,112,111,115,116,100,114, 97,119, 95, 99, 98, 0, 4, + 8, 0, 0, 0,101,100,105,116, 95, 99, 98, 0, 4, 7, 0, 0, 0,110,110,102, +102,102,102, 0, 4, 13, 0, 0, 0,101,100,105,116, 98,101,103,105,110, 95, 99, + 98, 0, 4, 11, 0, 0, 0,101,100,105,116,101,110,100, 95, 99, 98, 0, 4, 10, + 0, 0, 0,100,101,108,101,116,101, 95, 99, 98, 0, 4, 5, 0, 0, 0,110,110, +102,102, 0, 4, 15, 0, 0, 0,100,101,108,101,116,101, 98,101,103,105,110, 95, + 99, 98, 0, 4, 13, 0, 0, 0,100,101,108,101,116,101,101,110,100, 95, 99, 98, + 0, 4, 8, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 12, 0, 0, 0,105, +117,112, 95,112,112,108,111,116, 46,104, 0, 4, 11, 0, 0, 0,101,120,116,114, + 97,102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 26, + 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, + 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, + 6, 0, 0, 0, 80, 80,108,111,116, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111, +110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, 0, 0, 0, + 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 21, 0, 0, 0, 30, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua_pplot51/pplot.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/pplot_be32.loh b/iup/srclua5/loh/pplot_be32.loh new file mode 100755 index 0000000..bee507d --- /dev/null +++ b/iup/srclua5/loh/pplot_be32.loh @@ -0,0 +1,58 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua_pplot51/pplot_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua_pplot51/pplot_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,112,112,108, +111,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 31, 0, 1,192, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9,131, 65,192, 9, 0, 2,192, 74,132,194,128, 73,133,193, 64, 73,134, + 65, 64, 73,134,195,128, 73,135,195,128, 73,136, 68, 64, 73,137, 65, 64, 73,137, +193, 64, 73,138, 69, 64, 73,139, 65, 64, 73,139,193, 64, 73,132, 0, 64, 9,140, + 70, 64, 9,141, 70,192, 9, 0, 0, 0,100,142, 0, 64, 9, 0, 7, 64, 69, 0, + 0, 0,128, 1, 0, 64, 92, 0, 7,128, 69, 0, 0, 0,128, 0, 7,192,193, 1, +128, 64, 92, 0,128, 0, 30, 0, 0, 0, 32, 4, 0, 0, 0, 5,110,105, 99,107, + 0, 4, 0, 0, 0, 6,112,112,108,111,116, 0, 4, 0, 0, 0, 7,112, 97,114, +101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, + 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, + 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, 0, 0, 6, 80, 80,108,111,116, + 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 10, +115,101,108,101, 99,116, 95, 99, 98, 0, 4, 0, 0, 0, 6,110,110,102,102,110, + 0, 4, 0, 0, 0, 15,115,101,108,101, 99,116, 98,101,103,105,110, 95, 99, 98, + 0, 4, 0, 0, 0, 13,115,101,108,101, 99,116,101,110,100, 95, 99, 98, 0, 4, + 0, 0, 0, 11,112,114,101,100,114, 97,119, 95, 99, 98, 0, 4, 0, 0, 0, 2, +110, 0, 4, 0, 0, 0, 12,112,111,115,116,100,114, 97,119, 95, 99, 98, 0, 4, + 0, 0, 0, 8,101,100,105,116, 95, 99, 98, 0, 4, 0, 0, 0, 7,110,110,102, +102,102,102, 0, 4, 0, 0, 0, 13,101,100,105,116, 98,101,103,105,110, 95, 99, + 98, 0, 4, 0, 0, 0, 11,101,100,105,116,101,110,100, 95, 99, 98, 0, 4, 0, + 0, 0, 10,100,101,108,101,116,101, 95, 99, 98, 0, 4, 0, 0, 0, 5,110,110, +102,102, 0, 4, 0, 0, 0, 15,100,101,108,101,116,101, 98,101,103,105,110, 95, + 99, 98, 0, 4, 0, 0, 0, 13,100,101,108,101,116,101,101,110,100, 95, 99, 98, + 0, 4, 0, 0, 0, 8,105,110, 99,108,117,100,101, 0, 4, 0, 0, 0, 12,105, +117,112, 95,112,112,108,111,116, 46,104, 0, 4, 0, 0, 0, 11,101,120,116,114, + 97,102,117,110, 99,115, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, + 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11, +105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 26, 0, 0, 0, 28, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0, +192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, + 0, 0, 0, 6, 80, 80,108,111,116, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111, +110, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, + 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, + 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, + 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 22, 0, 0, 0, 23, + 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, + 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, + 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 21, 0, 0, 0, + 30, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua_pplot51/pplot_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/pplot_be64.loh b/iup/srclua5/loh/pplot_be64.loh new file mode 100755 index 0000000..ff71da6 --- /dev/null +++ b/iup/srclua5/loh/pplot_be64.loh @@ -0,0 +1,65 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua_pplot51/pplot_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua_pplot51/pplot_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,112,112,108,111,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 31, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74,192, 2, 0, 73,128,194,132, 73, + 64,193,133, 73, 64, 65,134, 73,128,195,134, 73,128,195,135, 73, 64, 68,136, 73, + 64, 65,137, 73, 64,193,137, 73, 64, 69,138, 73, 64, 65,139, 73, 64,193,139, 9, + 64, 0,132, 9, 64, 70,140, 9,192, 70,141,100, 0, 0, 0, 9, 64, 0,142, 69, + 64, 7, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 7, 0,128, 0, 0, 0,193, +192, 7, 0, 92, 64,128, 1, 30, 0,128, 0, 32, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,112, +108,111,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109, +101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80, 80,108,111,116, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,110,110,102,102,110, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,115,101, +108,101, 99,116, 98,101,103,105,110, 95, 99, 98, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,115,101,108,101, 99,116,101,110,100, 95, 99, 98, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,112,114,101,100,114, 97,119, 95, 99, 98, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,110, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,112,111,115,116,100, +114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, + 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,110,102,102,102,102, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, 98,101,103,105,110, 95, 99, + 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,100,105,116,101,110,100, 95, 99, + 98, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,100,101,108,101,116,101, 95, 99, 98, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,110,102,102, 0, 4, 15, 0, 0, 0, + 0, 0, 0, 0,100,101,108,101,116,101, 98,101,103,105,110, 95, 99, 98, 0, 4, + 13, 0, 0, 0, 0, 0, 0, 0,100,101,108,101,116,101,101,110,100, 95, 99, 98, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 95,112,112,108,111,116, 46,104, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102,117,110, 99,115, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, + 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, + 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, + 80, 80,108,111,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111, +110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 31, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 22, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 21, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua_pplot51/pplot_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/pplot_le64.loh b/iup/srclua5/loh/pplot_le64.loh new file mode 100755 index 0000000..cb64601 --- /dev/null +++ b/iup/srclua5/loh/pplot_le64.loh @@ -0,0 +1,65 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua_pplot51/pplot_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua_pplot51/pplot_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,112,112,108,111,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 31, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74,192, 2, 0, 73,128,194,132, 73, + 64,193,133, 73, 64, 65,134, 73,128,195,134, 73,128,195,135, 73, 64, 68,136, 73, + 64, 65,137, 73, 64,193,137, 73, 64, 69,138, 73, 64, 65,139, 73, 64,193,139, 9, + 64, 0,132, 9, 64, 70,140, 9,192, 70,141,100, 0, 0, 0, 9, 64, 0,142, 69, + 64, 7, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 7, 0,128, 0, 0, 0,193, +192, 7, 0, 92, 64,128, 1, 30, 0,128, 0, 32, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,112, +108,111,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109, +101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80, 80,108,111,116, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,110,110,102,102,110, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,115,101, +108,101, 99,116, 98,101,103,105,110, 95, 99, 98, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,115,101,108,101, 99,116,101,110,100, 95, 99, 98, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,112,114,101,100,114, 97,119, 95, 99, 98, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,110, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,112,111,115,116,100, +114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, + 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,110,102,102,102,102, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, 98,101,103,105,110, 95, 99, + 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,100,105,116,101,110,100, 95, 99, + 98, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,100,101,108,101,116,101, 95, 99, 98, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,110,102,102, 0, 4, 15, 0, 0, 0, + 0, 0, 0, 0,100,101,108,101,116,101, 98,101,103,105,110, 95, 99, 98, 0, 4, + 13, 0, 0, 0, 0, 0, 0, 0,100,101,108,101,116,101,101,110,100, 95, 99, 98, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 95,112,112,108,111,116, 46,104, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102,117,110, 99,115, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, + 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, + 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, + 80, 80,108,111,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111, +110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 31, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 22, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 21, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua_pplot51/pplot_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/pplot_le64w.loh b/iup/srclua5/loh/pplot_le64w.loh new file mode 100755 index 0000000..28248bf --- /dev/null +++ b/iup/srclua5/loh/pplot_le64w.loh @@ -0,0 +1,65 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua_pplot51/pplot_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua_pplot51/pplot_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,112,112,108,111,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 31, 0, 0, 0, 10,192, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74,192, 2, 0, 73,128,194,132, 73, + 64,193,133, 73, 64, 65,134, 73,128,195,134, 73,128,195,135, 73, 64, 68,136, 73, + 64, 65,137, 73, 64,193,137, 73, 64, 69,138, 73, 64, 65,139, 73, 64,193,139, 9, + 64, 0,132, 9, 64, 70,140, 9,192, 70,141,100, 0, 0, 0, 9, 64, 0,142, 69, + 64, 7, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 7, 0,128, 0, 0, 0,193, +192, 7, 0, 92, 64,128, 1, 30, 0,128, 0, 32, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,112,112, +108,111,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109, +101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 80, 80,108,111,116, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, + 0, 0, 0, 0,115,101,108,101, 99,116, 95, 99, 98, 0, 4, 6, 0, 0, 0, 0, + 0, 0, 0,110,110,102,102,110, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,115,101, +108,101, 99,116, 98,101,103,105,110, 95, 99, 98, 0, 4, 13, 0, 0, 0, 0, 0, + 0, 0,115,101,108,101, 99,116,101,110,100, 95, 99, 98, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,112,114,101,100,114, 97,119, 95, 99, 98, 0, 4, 2, 0, 0, 0, + 0, 0, 0, 0,110, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,112,111,115,116,100, +114, 97,119, 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, + 95, 99, 98, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,110,110,102,102,102,102, 0, + 4, 13, 0, 0, 0, 0, 0, 0, 0,101,100,105,116, 98,101,103,105,110, 95, 99, + 98, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,100,105,116,101,110,100, 95, 99, + 98, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,100,101,108,101,116,101, 95, 99, 98, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,110,102,102, 0, 4, 15, 0, 0, 0, + 0, 0, 0, 0,100,101,108,101,116,101, 98,101,103,105,110, 95, 99, 98, 0, 4, + 13, 0, 0, 0, 0, 0, 0, 0,100,101,108,101,116,101,101,110,100, 95, 99, 98, + 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 95,112,112,108,111,116, 46,104, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102,117,110, 99,115, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, + 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, + 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, + 80, 80,108,111,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, 99,116,105,111, +110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 31, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 22, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, + 99,116,114,108, 0, 21, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua_pplot51/pplot_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/progressbar.loh b/iup/srclua5/loh/progressbar.loh new file mode 100755 index 0000000..038ecb6 --- /dev/null +++ b/iup/srclua5/loh/progressbar.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/progressbar.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/progressbar.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 17, 0, 0, 0, 64,112,114,111, +103,114,101,115,115, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, 0, 9, 64, 0, +132,100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, + 1, 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, + 0, 13, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 12, 0, 0, 0, +112,114,111,103,114,101,115,115, 98, 97,114, 0, 4, 7, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, + 0,102,117,110, 99,110, 97,109,101, 0, 4, 12, 0, 0, 0, 80,114,111,103,114, +101,115,115, 66, 97,114, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0, +133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, + 4, 12, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, 97,114, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, + 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/progressbar.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/progressbar_be32.loh b/iup/srclua5/loh/progressbar_be32.loh new file mode 100755 index 0000000..f97d3cd --- /dev/null +++ b/iup/srclua5/loh/progressbar_be32.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/progressbar_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/progressbar_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 17, 64,112,114,111, +103,114,101,115,115, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 0, 0, 0, 18, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, + 69,129, 0, 64, 9,130, 65, 64, 9,131, 65,192, 9, 0, 0, 0, 74,132, 0, 64, + 9, 0, 0, 0,100,132,128, 64, 9, 0, 2,128, 69, 0, 0, 0,128, 1, 0, 64, + 92, 0, 2,192, 69, 0, 0, 0,128, 0, 3, 0,193, 1,128, 64, 92, 0,128, 0, + 30, 0, 0, 0, 13, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 12, +112,114,111,103,114,101,115,115, 98, 97,114, 0, 4, 0, 0, 0, 7,112, 97,114, +101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, + 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, + 9,102,117,110, 99,110, 97,109,101, 0, 4, 0, 0, 0, 12, 80,114,111,103,114, +101,115,115, 66, 97,114, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 2, 0, 3, 0, 0, 0, 4, + 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, + 4, 0, 0, 0, 12, 80,114,111,103,114,101,115,115, 66, 97,114, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, + 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/progressbar_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/progressbar_be64.loh b/iup/srclua5/loh/progressbar_be64.loh new file mode 100755 index 0000000..fab0e2d --- /dev/null +++ b/iup/srclua5/loh/progressbar_be64.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/progressbar_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/progressbar_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 64,112,114,111,103,114,101,115,115, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64, +128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, + 0, 9, 64, 0,132,100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,112,114,111,103,114,101,115,115, + 98, 97,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109, +101, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, + 97,114, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0, +133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, 97,114, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/progressbar_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/progressbar_le64.loh b/iup/srclua5/loh/progressbar_le64.loh new file mode 100755 index 0000000..f0bcaae --- /dev/null +++ b/iup/srclua5/loh/progressbar_le64.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/progressbar_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/progressbar_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 64,112,114,111,103,114,101,115,115, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64, +128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, + 0, 9, 64, 0,132,100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,112,114,111,103,114,101,115,115, + 98, 97,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109, +101, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, + 97,114, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0, +133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, 97,114, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/progressbar_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/progressbar_le64w.loh b/iup/srclua5/loh/progressbar_le64w.loh new file mode 100755 index 0000000..4c44c14 --- /dev/null +++ b/iup/srclua5/loh/progressbar_le64w.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/progressbar_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/progressbar_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 64,112,114,111,103,114,101,115,115, 98, 97,114, 46,108,117, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64, +128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 9,192, 65,131, 74, 0, 0, + 0, 9, 64, 0,132,100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,112,114,111,103,114,101,115,115, + 98, 97,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,102,117,110, 99,110, 97,109, +101, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, + 97,114, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0, +133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, + 4, 12, 0, 0, 0, 0, 0, 0, 0, 80,114,111,103,114,101,115,115, 66, 97,114, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97, +114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/progressbar_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/radio.loh b/iup/srclua5/loh/radio.loh new file mode 100755 index 0000000..3a77edf --- /dev/null +++ b/iup/srclua5/loh/radio.loh @@ -0,0 +1,64 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/radio.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/radio.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,114, 97,100, +105,111, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 21, + 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 0, 0, 0, 0, 9, + 64,128,131,100, 64, 0, 0, 0, 0, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, + 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, + 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, + 0, 4, 6, 0, 0, 0,114, 97,100,105,111, 0, 4, 7, 0, 0, 0,112, 97,114, +101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0,105, 0, 4, 9, 0, + 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 20, 0, 0, 0, 67,114,101, 97, +116,101, 67,104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 14, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 11, + 0, 0, 0, 25, 0, 0, 0, 1, 1, 0, 4, 31, 0, 0, 0, 26, 0, 0, 0, 22, +192, 6,128, 70, 0, 64, 0, 70, 0,192, 0,133, 64, 0, 0, 23,128,128, 0, 22, +128, 2,128, 65,128, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22,128, 4,128,132, + 0, 0, 0,134,192, 64, 1,198, 64, 0, 0,156, 64, 0, 1, 76,128,192, 0, 22, +128,253,127, 22,192, 2,128, 70, 0, 64, 0,133, 0, 1, 0, 23,128,128, 0, 22, + 0, 1,128, 68, 0, 0, 0, 70,192,192, 0,134,128, 64, 0, 92, 64, 0, 1, 22, +128, 0,128, 69, 64, 1, 0,128, 0, 0, 0, 92, 64, 0, 1, 30, 0,128, 0, 6, + 0, 0, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, + 66, 79, 88, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 20, 0, 0, 0, 67,114, +101, 97,116,101, 67,104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 9, + 0, 0, 0, 73, 85, 80, 70, 82, 65, 77, 69, 0, 4, 16, 0, 0, 0,105,104, 97, +110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 0, 0, 0, 0, 31, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, + 0, 25, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0,111, 98,106, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 2, 0, 0, 0,105, 0, 8, 0, 0, 0, 17, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 30, 0, 0, 0, 1, 2, 0, 4, 9, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1, +198, 64,192, 0,156, 64, 0, 1,133,128, 0, 0,198, 64,192, 0,157, 0, 0, 1, +158, 0, 0, 0, 30, 0,128, 0, 3, 0, 0, 0, 4, 20, 0, 0, 0, 67,114,101, + 97,116,101, 67,104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 3, 0, 0, + 0, 0, 0, 0,240, 63, 4, 6, 0, 0, 0, 82, 97,100,105,111, 0, 0, 0, 0, + 0, 9, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, + 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 8, + 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 21, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 8, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 11, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 27, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, + 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 20, 0, 0, + 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/radio.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/radio_be32.loh b/iup/srclua5/loh/radio_be32.loh new file mode 100755 index 0000000..5e063f0 --- /dev/null +++ b/iup/srclua5/loh/radio_be32.loh @@ -0,0 +1,64 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/radio_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/radio_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,114, 97,100, +105,111, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 21, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100, 0, 0, 0, 0,131, +128, 64, 9, 0, 0, 64,100, 0, 0, 0, 0,132, 0, 64, 9, 0, 2, 64, 69, 0, + 0, 0,128, 1, 0, 64, 92, 0, 2,128, 69, 0, 0, 0,128, 0, 2,192,193, 1, +128, 64, 92, 0,128, 0, 30, 0, 0, 0, 12, 4, 0, 0, 0, 5,110,105, 99,107, + 0, 4, 0, 0, 0, 6,114, 97,100,105,111, 0, 4, 0, 0, 0, 7,112, 97,114, +101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, + 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2,105, 0, 4, 0, 0, + 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 20, 67,114,101, 97, +116,101, 67,104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 0, 0, 0, + 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, + 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11, +105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 0, 0, 25, 1, 1, 0, 4, 0, 0, 0, 31, 0, 0, 0, 26,128, + 6,192, 22, 0, 64, 0, 70, 0,192, 0, 70, 0, 0, 64,133, 0,128,128, 23,128, + 2,128, 22, 0, 0,128, 65, 0, 0, 64,134, 0, 0, 0,154,128, 4,128, 22, 0, + 0, 0,132, 1, 64,192,134, 0, 0, 64,198, 1, 0, 64,156, 0,192,128, 76,127, +253,128, 22,128, 2,192, 22, 0, 64, 0, 70, 0, 1, 0,133, 0,128,128, 23,128, + 1, 0, 22, 0, 0, 0, 68, 0,192,192, 70, 0, 64,128,134, 1, 0, 64, 92,128, + 0,128, 22, 0, 1, 64, 69, 0, 0, 0,128, 1, 0, 64, 92, 0,128, 0, 30, 0, + 0, 0, 6, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 4, + 66, 79, 88, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 20, 67,114, +101, 97,116,101, 67,104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 0, + 0, 0, 9, 73, 85, 80, 70, 82, 65, 77, 69, 0, 4, 0, 0, 0, 16,105,104, 97, +110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 0, 0, 0, 0, 0, 0, 0, + 31, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, + 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, + 22, 0, 0, 0, 25, 0, 0, 0, 2, 0, 0, 0, 4,111, 98,106, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 2,105, 0, 0, 0, 0, 8, 0, 0, 0, 17, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 30, 1, 2, 0, 4, 0, 0, 0, 9, 0, 0, 0,132, 1, 64, 0,134, + 0,192, 64,198, 1, 0, 64,156, 0, 0,128,133, 0,192, 64,198, 1, 0, 0,157, + 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 3, 4, 0, 0, 0, 20, 67,114,101, + 97,116,101, 67,104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 3, 63,240, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 6, 82, 97,100,105,111, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, + 28, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, + 30, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 21, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 11, 0, 0, 0, 30, + 0, 0, 0, 30, 0, 0, 0, 27, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, + 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, + 20, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/radio_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/radio_be64.loh b/iup/srclua5/loh/radio_be64.loh new file mode 100755 index 0000000..f84561b --- /dev/null +++ b/iup/srclua5/loh/radio_be64.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/radio_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/radio_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,114, 97,100,105,111, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 21, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 0, + 0, 0, 0, 9, 64,128,131,100, 64, 0, 0, 0, 0, 0, 0, 9, 64, 0,132, 69, + 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193, +192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,114, 97, +100,105,111, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67,104, +105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 25, + 0, 0, 0, 1, 1, 0, 4, 31, 0, 0, 0, 26, 0, 0, 0, 22,192, 6,128, 70, + 0, 64, 0, 70, 0,192, 0,133, 64, 0, 0, 23,128,128, 0, 22,128, 2,128, 65, +128, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22,128, 4,128,132, 0, 0, 0,134, +192, 64, 1,198, 64, 0, 0,156, 64, 0, 1, 76,128,192, 0, 22,128,253,127, 22, +192, 2,128, 70, 0, 64, 0,133, 0, 1, 0, 23,128,128, 0, 22, 0, 1,128, 68, + 0, 0, 0, 70,192,192, 0,134,128, 64, 0, 92, 64, 0, 1, 22,128, 0,128, 69, + 64, 1, 0,128, 0, 0, 0, 92, 64, 0, 1, 30, 0,128, 0, 6, 0, 0, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, + 0, 0, 0, 0, 66, 79, 88, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 20, 0, + 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67,104,105,108,100,114,101,110, + 78, 97,109,101,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 73, 85, 80, 70, 82, + 65, 77, 69, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, + 95,115,101,116,110, 97,109,101, 0, 0, 0, 0, 0, 31, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 25, 0, 0, + 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,111, 98,106, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 1, 2, 0, 4, + 9, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1,198, 64,192, 0,156, 64, 0, 1, +133,128, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 3, 0, 0, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67, +104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 3, 0, 0, 0, 0, 0, 0, +240, 63, 4, 6, 0, 0, 0, 0, 0, 0, 0, 82, 97,100,105,111, 0, 0, 0, 0, + 0, 9, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, + 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 21, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, + 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 11, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 27, 0, 0, 0, + 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, + 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/radio_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/radio_le64.loh b/iup/srclua5/loh/radio_le64.loh new file mode 100755 index 0000000..daf1502 --- /dev/null +++ b/iup/srclua5/loh/radio_le64.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/radio_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/radio_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,114, 97,100,105,111, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 21, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 0, + 0, 0, 0, 9, 64,128,131,100, 64, 0, 0, 0, 0, 0, 0, 9, 64, 0,132, 69, + 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193, +192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,114, 97, +100,105,111, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67,104, +105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 25, + 0, 0, 0, 1, 1, 0, 4, 31, 0, 0, 0, 26, 0, 0, 0, 22,192, 6,128, 70, + 0, 64, 0, 70, 0,192, 0,133, 64, 0, 0, 23,128,128, 0, 22,128, 2,128, 65, +128, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22,128, 4,128,132, 0, 0, 0,134, +192, 64, 1,198, 64, 0, 0,156, 64, 0, 1, 76,128,192, 0, 22,128,253,127, 22, +192, 2,128, 70, 0, 64, 0,133, 0, 1, 0, 23,128,128, 0, 22, 0, 1,128, 68, + 0, 0, 0, 70,192,192, 0,134,128, 64, 0, 92, 64, 0, 1, 22,128, 0,128, 69, + 64, 1, 0,128, 0, 0, 0, 92, 64, 0, 1, 30, 0,128, 0, 6, 0, 0, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, + 0, 0, 0, 0, 66, 79, 88, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 20, 0, + 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67,104,105,108,100,114,101,110, + 78, 97,109,101,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 73, 85, 80, 70, 82, + 65, 77, 69, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, + 95,115,101,116,110, 97,109,101, 0, 0, 0, 0, 0, 31, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 25, 0, 0, + 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,111, 98,106, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 1, 2, 0, 4, + 9, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1,198, 64,192, 0,156, 64, 0, 1, +133,128, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 3, 0, 0, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67, +104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 3, 0, 0, 0, 0, 0, 0, +240, 63, 4, 6, 0, 0, 0, 0, 0, 0, 0, 82, 97,100,105,111, 0, 0, 0, 0, + 0, 9, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, + 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 21, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, + 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 11, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 27, 0, 0, 0, + 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, + 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/radio_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/radio_le64w.loh b/iup/srclua5/loh/radio_le64w.loh new file mode 100755 index 0000000..5ada88f --- /dev/null +++ b/iup/srclua5/loh/radio_le64w.loh @@ -0,0 +1,70 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/radio_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/radio_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,114, 97,100,105,111, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 21, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 0, + 0, 0, 0, 9, 64,128,131,100, 64, 0, 0, 0, 0, 0, 0, 9, 64, 0,132, 69, + 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, 0, 0, 0,193, +192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,114, 97, +100,105,111, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, + 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67,104, +105,108,100,114,101,110, 78, 97,109,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 25, + 0, 0, 0, 1, 1, 0, 4, 31, 0, 0, 0, 26, 0, 0, 0, 22,192, 6,128, 70, + 0, 64, 0, 70, 0,192, 0,133, 64, 0, 0, 23,128,128, 0, 22,128, 2,128, 65, +128, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22,128, 4,128,132, 0, 0, 0,134, +192, 64, 1,198, 64, 0, 0,156, 64, 0, 1, 76,128,192, 0, 22,128,253,127, 22, +192, 2,128, 70, 0, 64, 0,133, 0, 1, 0, 23,128,128, 0, 22, 0, 1,128, 68, + 0, 0, 0, 70,192,192, 0,134,128, 64, 0, 92, 64, 0, 1, 22,128, 0,128, 69, + 64, 1, 0,128, 0, 0, 0, 92, 64, 0, 1, 30, 0,128, 0, 6, 0, 0, 0, 4, + 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, + 0, 0, 0, 0, 66, 79, 88, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 20, 0, + 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67,104,105,108,100,114,101,110, + 78, 97,109,101,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 73, 85, 80, 70, 82, + 65, 77, 69, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, + 95,115,101,116,110, 97,109,101, 0, 0, 0, 0, 0, 31, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 22, 0, 0, 0, 25, 0, 0, + 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,111, 98,106, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 8, 0, 0, 0, 17, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 30, 0, 0, 0, 1, 2, 0, 4, + 9, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1,198, 64,192, 0,156, 64, 0, 1, +133,128, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 3, 0, 0, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 67,114,101, 97,116,101, 67, +104,105,108,100,114,101,110, 78, 97,109,101,115, 0, 3, 0, 0, 0, 0, 0, 0, +240, 63, 4, 6, 0, 0, 0, 0, 0, 0, 0, 82, 97,100,105,111, 0, 0, 0, 0, + 0, 9, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, + 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 30, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 21, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, + 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 11, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 27, 0, 0, 0, + 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, + 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/radio_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/sbox.loh b/iup/srclua5/loh/sbox.loh new file mode 100755 index 0000000..250c754 --- /dev/null +++ b/iup/srclua5/loh/sbox.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/sbox.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/sbox.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,115, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 17, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131, 69, 0, + 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, 0, 0,193,128, + 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,115, 98,111,120, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0,105, 0, 4, + 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 13, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, +157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, + 0, 83, 98,111,120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, + 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, + 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, + 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/sbox.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/sbox_be32.loh b/iup/srclua5/loh/sbox_be32.loh new file mode 100755 index 0000000..6ab085b --- /dev/null +++ b/iup/srclua5/loh/sbox_be32.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/sbox_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/sbox_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,115, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, 2, + 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, 0, 0,128, 0, 2, +128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, 0, 5,110, +105, 99,107, 0, 4, 0, 0, 0, 5,115, 98,111,120, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, + 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2,105, 0, 4, + 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 14, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, + 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 11, + 0, 0, 0, 13, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, 64,198, + 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, + 5, 83, 98,111,120, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, + 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, + 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 16, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/sbox_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/sbox_be64.loh b/iup/srclua5/loh/sbox_be64.loh new file mode 100755 index 0000000..0acf695 --- /dev/null +++ b/iup/srclua5/loh/sbox_be64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/sbox_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/sbox_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,115, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,115, 98,111,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, + 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 4, + 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, + 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 83, 98,111, +120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 12, + 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, + 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/sbox_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/sbox_le64.loh b/iup/srclua5/loh/sbox_le64.loh new file mode 100755 index 0000000..88cb639 --- /dev/null +++ b/iup/srclua5/loh/sbox_le64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/sbox_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/sbox_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,115, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,115, 98,111,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, + 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 4, + 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, + 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 83, 98,111, +120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 12, + 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, + 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/sbox_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/sbox_le64w.loh b/iup/srclua5/loh/sbox_le64w.loh new file mode 100755 index 0000000..440c7f2 --- /dev/null +++ b/iup/srclua5/loh/sbox_le64w.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/sbox_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/sbox_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,115, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,115, 98,111,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, + 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 4, + 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, + 30, 0,128, 0, 2, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 83, 98,111, +120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 12, + 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, + 0, 13, 0, 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/sbox_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/separator.loh b/iup/srclua5/loh/separator.loh new file mode 100755 index 0000000..d27e0d7 --- /dev/null +++ b/iup/srclua5/loh/separator.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/separator.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/separator.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 15, 0, 0, 0, 64,115,101,112, + 97,114, 97,116,111,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, + 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, + 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, + 5, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, 0, 0,115,101,112, 97,114, 97, +116,111,114, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, + 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, + 0, 4, 10, 0, 0, 0, 83,101,112, 97,114, 97,116,111,114, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, + 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/separator.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/separator_be32.loh b/iup/srclua5/loh/separator_be32.loh new file mode 100755 index 0000000..d262bf7 --- /dev/null +++ b/iup/srclua5/loh/separator_be32.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/separator_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/separator_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 15, 64,115,101,112, + 97,114, 97,116,111,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 0, 0, 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, + 0, 64, 9,130, 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131, +128, 64, 9, 0, 2, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, + 0, 0,128, 0, 2,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, + 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 10,115,101,112, 97,114, 97, +116,111,114, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, + 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111, +110, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, + 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 2, 0, 3, 0, 0, 0, + 4, 0, 0, 0,133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, + 1, 4, 0, 0, 0, 10, 83,101,112, 97,114, 97,116,111,114, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, + 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, + 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, + 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, 0, + 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/separator_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/separator_be64.loh b/iup/srclua5/loh/separator_be64.loh new file mode 100755 index 0000000..5d4eb22 --- /dev/null +++ b/iup/srclua5/loh/separator_be64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/separator_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/separator_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,115,101,112, 97,114, 97,116,111,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, + 0, 0, 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, + 64, 2, 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,115,101,112, 97,114, 97,116,111,114, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, + 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 83,101,112, 97,114, 97,116,111,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, + 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/separator_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/separator_le64.loh b/iup/srclua5/loh/separator_le64.loh new file mode 100755 index 0000000..53aa721 --- /dev/null +++ b/iup/srclua5/loh/separator_le64.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/separator_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/separator_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,115,101,112, 97,114, 97,116,111,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, + 0, 0, 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, + 64, 2, 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,115,101,112, 97,114, 97,116,111,114, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, + 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 83,101,112, 97,114, 97,116,111,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, + 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/separator_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/separator_le64w.loh b/iup/srclua5/loh/separator_le64w.loh new file mode 100755 index 0000000..c0f7c76 --- /dev/null +++ b/iup/srclua5/loh/separator_le64w.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/separator_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/separator_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 64,115,101,112, 97,114, 97,116,111,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69, +192, 0, 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, + 0, 0, 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, + 64, 2, 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,115,101,112, 97,114, 97,116,111,114, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, + 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100, +103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67, +108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, + 0, 13, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, + 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 83,101,112, 97,114, 97,116,111,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, + 0, 0, 11, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/separator_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/spin.loh b/iup/srclua5/loh/spin.loh new file mode 100755 index 0000000..1a19ff2 --- /dev/null +++ b/iup/srclua5/loh/spin.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spin.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spin.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,115,112,105, +110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, + 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, + 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0,115,112,105,110, 0, 4, 7, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, + 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, 0,110, 0, 4, 14, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, + 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, + 5, 0, 0, 0, 83,112,105,110, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, + 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, + 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, + 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, + 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spin.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spin_be32.loh b/iup/srclua5/loh/spin_be32.loh new file mode 100755 index 0000000..345cb29 --- /dev/null +++ b/iup/srclua5/loh/spin_be32.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spin_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spin_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,115,112,105, +110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 18, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9, 0, 0, 0,100,132,128, + 64, 9, 0, 2,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,192, 69, 0, 0, + 0,128, 0, 3, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 13, 4, 0, + 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 5,115,112,105,110, 0, 4, 0, + 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, + 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, + 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, + 8,115,112,105,110, 95, 99, 98, 0, 4, 0, 0, 0, 2,110, 0, 4, 0, 0, 0, + 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18, +105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, + 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11, +105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 15, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0, +192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, + 0, 0, 0, 5, 83,112,105,110, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, + 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, + 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97, +115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, + 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, + 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, + 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spin_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spin_be64.loh b/iup/srclua5/loh/spin_be64.loh new file mode 100755 index 0000000..7980327 --- /dev/null +++ b/iup/srclua5/loh/spin_be64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spin_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spin_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,115,112,105,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131,100, 0, + 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, + 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, + 0, 0, 0, 0, 0,115,112,105,110, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,112,105, +110, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, 14, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101, +116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, + 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0, 83,112,105,110, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, + 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, + 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spin_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spin_le64.loh b/iup/srclua5/loh/spin_le64.loh new file mode 100755 index 0000000..e171149 --- /dev/null +++ b/iup/srclua5/loh/spin_le64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spin_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spin_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,115,112,105,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,105,117,112,115,112,105,110, 46,104, 0, 4, 14, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101, +116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, + 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0, 83,112,105,110, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, + 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, + 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spin_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spin_le64w.loh b/iup/srclua5/loh/spin_le64w.loh new file mode 100755 index 0000000..eb5820d --- /dev/null +++ b/iup/srclua5/loh/spin_le64w.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spin_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spin_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,115,112,105,110, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, + 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, + 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, 0, 4, 10, 0, + 0, 0, 0, 0, 0, 0,105,117,112,115,112,105,110, 46,104, 0, 4, 14, 0, 0, + 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101, +116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, + 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, + 5, 0, 0, 0, 0, 0, 0, 0, 83,112,105,110, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 97, 99,116,105,111,110, 0, 0, 0, 0, 0, 5, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, + 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, + 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spin_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spinbox.loh b/iup/srclua5/loh/spinbox.loh new file mode 100755 index 0000000..b8c060d --- /dev/null +++ b/iup/srclua5/loh/spinbox.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spinbox.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spinbox.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 13, 0, 0, 0, 64,115,112,105, +110, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131,100, 0, 0, + 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, + 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, + 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0,115,112,105,110, + 98,111,120, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 2, 0, 0, 0,105, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 8, 0, 0, 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, + 0,110, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105, +100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 83,112,105,110, 98,111,120, 0, 3, + 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, 0, + 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, + 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spinbox.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spinbox_be32.loh b/iup/srclua5/loh/spinbox_be32.loh new file mode 100755 index 0000000..84a7f50 --- /dev/null +++ b/iup/srclua5/loh/spinbox_be32.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spinbox_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spinbox_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 13, 64,115,112,105, +110, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 0, 19, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, + 9,130, 65, 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9,132,194,128, + 9, 0, 0, 0,100,133,128, 64, 9, 0, 3, 0, 69, 0, 0, 0,128, 1, 0, 64, + 92, 0, 3, 64, 69, 0, 0, 0,128, 0, 3,128,193, 1,128, 64, 92, 0,128, 0, + 30, 0, 0, 0, 15, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 8, +115,112,105,110, 98,111,120, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, + 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, + 97,116,105,111,110, 0, 4, 0, 0, 0, 2,105, 0, 4, 0, 0, 0, 9, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 8,115,112,105,110, 95, 99, 98, 0, + 4, 0, 0, 0, 2,110, 0, 4, 0, 0, 0, 8,105,110, 99,108,117,100,101, 0, + 4, 0, 0, 0, 10,105,117,112,115,112,105,110, 46,104, 0, 4, 0, 0, 0, 14, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, + 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105, +117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 16, 0, 2, 0, 4, 0, 0, 0, 5, 0, 0, 0,133, 0,192, + 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 2, 4, 0, + 0, 0, 8, 83,112,105,110, 98,111,120, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 99,116, +114,108, 0, 0, 0, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spinbox_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spinbox_be64.loh b/iup/srclua5/loh/spinbox_be64.loh new file mode 100755 index 0000000..6669e34 --- /dev/null +++ b/iup/srclua5/loh/spinbox_be64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spinbox_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spinbox_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,115,112,105,110, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0, +131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 98,111,120, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,105, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,117,112,115,112,105,110, + 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83,112,105,110, 98, +111,120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spinbox_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spinbox_le64.loh b/iup/srclua5/loh/spinbox_le64.loh new file mode 100755 index 0000000..bca8d74 --- /dev/null +++ b/iup/srclua5/loh/spinbox_le64.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spinbox_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spinbox_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,115,112,105,110, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0, +131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 98,111,120, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,105, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,117,112,115,112,105,110, + 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83,112,105,110, 98, +111,120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spinbox_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/spinbox_le64w.loh b/iup/srclua5/loh/spinbox_le64w.loh new file mode 100755 index 0000000..2293c4a --- /dev/null +++ b/iup/srclua5/loh/spinbox_le64w.loh @@ -0,0 +1,44 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/spinbox_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/spinbox_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,115,112,105,110, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 19, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0, +131, 9,128,194,132,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 98,111,120, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,105, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0,115,112,105,110, 95, 99, 98, 0, 4, 2, 0, 0, + 0, 0, 0, 0, 0,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108, +117,100,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,117,112,115,112,105,110, + 46,104, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108, +101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101, +103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 0, 0,133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0, +128, 0, 2, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 83,112,105,110, 98, +111,120, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/spinbox_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/submenu.loh b/iup/srclua5/loh/submenu.loh new file mode 100755 index 0000000..9be8849 --- /dev/null +++ b/iup/srclua5/loh/submenu.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/submenu.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/submenu.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 13, 0, 0, 0, 64,115,117, 98, +109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128, +131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, 0, + 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, 0, + 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0,115,117, 98,109,101,110,117, 0, + 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 3, + 0, 0, 0, 83,105, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, + 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 5, 6, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0, 6,129,192, 0,157, 0,128, 1,158, 0, 0, 0, 30, + 0,128, 0, 3, 0, 0, 0, 4, 8, 0, 0, 0, 83,117, 98,109,101,110,117, 0, + 4, 6, 0, 0, 0,116,105,116,108,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 0, 0, 0, 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 97,114, +103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 4, 0, + 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, + 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, + 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/submenu.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/submenu_be32.loh b/iup/srclua5/loh/submenu_be32.loh new file mode 100755 index 0000000..8c727dc --- /dev/null +++ b/iup/srclua5/loh/submenu_be32.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/submenu_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/submenu_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 13, 64,115,117, 98, +109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 0, 0, 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, + 9,130, 65, 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, + 9, 0, 2, 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, 0, 0, +128, 0, 2,128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, + 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 8,115,117, 98,109,101,110,117, 0, + 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, + 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, + 0, 0, 3, 83,105, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, + 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, + 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, + 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 2, 0, 5, 0, 0, 0, 6, 0, + 0, 0,133, 0,192, 64,198, 0,192,129, 6, 1,128, 0,157, 0, 0, 0,158, 0, +128, 0, 30, 0, 0, 0, 3, 4, 0, 0, 0, 8, 83,117, 98,109,101,110,117, 0, + 4, 0, 0, 0, 6,116,105,116,108,101, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, + 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 97,114, +103, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, + 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, + 0, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/submenu_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/submenu_be64.loh b/iup/srclua5/loh/submenu_be64.loh new file mode 100755 index 0000000..959cf94 --- /dev/null +++ b/iup/srclua5/loh/submenu_be64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/submenu_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/submenu_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,115,117, 98,109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, + 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, + 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,115,117, 98,109,101,110,117, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83,105, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, + 0, 0, 0, 0, 2, 0, 5, 6, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6, +129,192, 0,157, 0,128, 1,158, 0, 0, 0, 30, 0,128, 0, 3, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 83,117, 98,109,101,110,117, 0, 4, 6, 0, 0, + 0, 0, 0, 0, 0,116,105,116,108,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 0, 0, 0, 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/submenu_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/submenu_le64.loh b/iup/srclua5/loh/submenu_le64.loh new file mode 100755 index 0000000..d60c660 --- /dev/null +++ b/iup/srclua5/loh/submenu_le64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/submenu_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/submenu_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,115,117, 98,109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, + 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, + 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,115,117, 98,109,101,110,117, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83,105, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, + 0, 0, 0, 0, 2, 0, 5, 6, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6, +129,192, 0,157, 0,128, 1,158, 0, 0, 0, 30, 0,128, 0, 3, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 83,117, 98,109,101,110,117, 0, 4, 6, 0, 0, + 0, 0, 0, 0, 0,116,105,116,108,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 0, 0, 0, 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/submenu_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/submenu_le64w.loh b/iup/srclua5/loh/submenu_le64w.loh new file mode 100755 index 0000000..7634bdf --- /dev/null +++ b/iup/srclua5/loh/submenu_le64w.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/submenu_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/submenu_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 64,115,117, 98,109,101,110,117, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, + 0, 9, 64, 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, + 0, 9, 64,128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, + 0,128, 0, 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 0,115,117, 98,109,101,110,117, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83,105, 0, 4, 9, 0, 0, 0, 0, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, + 0, 0, 0, 0, 2, 0, 5, 6, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0, 6, +129,192, 0,157, 0,128, 1,158, 0, 0, 0, 30, 0,128, 0, 3, 0, 0, 0, 4, + 8, 0, 0, 0, 0, 0, 0, 0, 83,117, 98,109,101,110,117, 0, 4, 6, 0, 0, + 0, 0, 0, 0, 0,116,105,116,108,101, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, + 0, 0, 0, 0, 6, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 11, 0, 0, 0, 16, 0, 0, 0, 14, 0, + 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/submenu_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/tabs.loh b/iup/srclua5/loh/tabs.loh new file mode 100755 index 0000000..0b9ca1c --- /dev/null +++ b/iup/srclua5/loh/tabs.loh @@ -0,0 +1,51 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tabs.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tabs.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,116, 97, 98, +115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 20, 0, + 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128,194,132, 9, 0, +195,133,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64,128, 1, 30, 0, +128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, + 0,116, 97, 98,115, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0,118, 0, 4, 9, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 13, 0, 0, 0,116, 97, 98, 99,104, 97,110,103,101, 95, + 99, 98, 0, 4, 3, 0, 0, 0,105,105, 0, 4, 9, 0, 0, 0,102,117,110, 99, +110, 97,109,101, 0, 4, 6, 0, 0, 0, 84, 97, 98,115,118, 0, 4, 11, 0, 0, + 0, 99,114,101, 97,116,101,102,117,110, 99, 0, 4,207, 0, 0, 0,115,116, 97, +116,105, 99, 32,105,110,116, 32, 84, 97, 98,115,118, 40,108,117, 97, 95, 83,116, + 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, + 42, 42,104,108,105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, + 99,107,105,104, 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, + 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117, +112, 84, 97, 98,115,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112, +108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, + 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108, +101, 95,114, 97,119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40, +104,108,105,115,116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10, +125, 10, 10, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 4, 5, + 0, 0, 0,133, 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, + 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 84, 97, 98,115,118, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, + 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, + 10, 0, 0, 0, 11, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, + 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, + 99,116,114,108, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tabs.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tabs_be32.loh b/iup/srclua5/loh/tabs_be32.loh new file mode 100755 index 0000000..3a88da2 --- /dev/null +++ b/iup/srclua5/loh/tabs_be32.loh @@ -0,0 +1,51 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tabs_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tabs_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,116, 97, 98, +115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 20, 0, 1,128, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9,132,194,128, 9,133,195, + 0, 9, 0, 0, 0,100,134,128, 64, 9, 0, 3,128, 69, 0, 0, 0,128, 1, 0, + 64, 92, 0, 3,192, 69, 0, 0, 0,128, 0, 4, 0,193, 1,128, 64, 92, 0,128, + 0, 30, 0, 0, 0, 17, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, + 5,116, 97, 98,115, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 2,118, 0, 4, 0, 0, 0, 9, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 0, 0, 0, 13,116, 97, 98, 99,104, 97,110,103,101, 95, + 99, 98, 0, 4, 0, 0, 0, 3,105,105, 0, 4, 0, 0, 0, 9,102,117,110, 99, +110, 97,109,101, 0, 4, 0, 0, 0, 6, 84, 97, 98,115,118, 0, 4, 0, 0, 0, + 11, 99,114,101, 97,116,101,102,117,110, 99, 0, 4, 0, 0, 0,207,115,116, 97, +116,105, 99, 32,105,110,116, 32, 84, 97, 98,115,118, 40,108,117, 97, 95, 83,116, + 97,116,101, 32, 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, + 42, 42,104,108,105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, + 99,107,105,104, 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, + 41, 59, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117, +112, 84, 97, 98,115,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112, +108,117, 97, 95,112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, + 10, 32, 32,105,117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108, +101, 95,114, 97,119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40, +104,108,105,115,116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10, +125, 10, 10, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 28, 0, 2, 0, 4, 0, + 0, 0, 5, 0, 0, 0,133, 0,128, 0,192, 1, 0, 0,157, 0, 0, 0,158, 0, +128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 6, 84, 97, 98,115,118, 0, 0, 0, + 0, 0, 0, 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, + 0, 27, 0, 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, + 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 23, 0, 0, 0, 28, 0, 0, 0, 26, + 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, 0, 0, 31, + 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 1, 0, 0, 0, 5, + 99,116,114,108, 0, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tabs_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tabs_be64.loh b/iup/srclua5/loh/tabs_be64.loh new file mode 100755 index 0000000..536d55a --- /dev/null +++ b/iup/srclua5/loh/tabs_be64.loh @@ -0,0 +1,56 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tabs_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tabs_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116, 97, 98,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,116, 97, 98, 99,104, 97,110,103,101, 95, 99, 98, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,105,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84, 97, + 98,115,118, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102, +117,110, 99, 0, 4,207, 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,105, 99, 32, +105,110,116, 32, 84, 97, 98,115,118, 40,108,117, 97, 95, 83,116, 97,116,101, 32, + 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42,104,108, +105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,105,104, + 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, 10, 32, + 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117,112, 84, 97, 98, +115,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95, +112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,105, +117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95,114, 97, +119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40,104,108,105,115, +116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, 10, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84, 97, 98,115,118, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 23, 0, 0, 0, + 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 10, 0, 0, + 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tabs_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tabs_le64.loh b/iup/srclua5/loh/tabs_le64.loh new file mode 100755 index 0000000..9d6ecff --- /dev/null +++ b/iup/srclua5/loh/tabs_le64.loh @@ -0,0 +1,56 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tabs_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tabs_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116, 97, 98,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,116, 97, 98, 99,104, 97,110,103,101, 95, 99, 98, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,105,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84, 97, + 98,115,118, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102, +117,110, 99, 0, 4,207, 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,105, 99, 32, +105,110,116, 32, 84, 97, 98,115,118, 40,108,117, 97, 95, 83,116, 97,116,101, 32, + 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42,104,108, +105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,105,104, + 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, 10, 32, + 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117,112, 84, 97, 98, +115,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95, +112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,105, +117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95,114, 97, +119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40,104,108,105,115, +116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, 10, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84, 97, 98,115,118, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 23, 0, 0, 0, + 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 10, 0, 0, + 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tabs_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tabs_le64w.loh b/iup/srclua5/loh/tabs_le64w.loh new file mode 100755 index 0000000..346d99f --- /dev/null +++ b/iup/srclua5/loh/tabs_le64w.loh @@ -0,0 +1,56 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tabs_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tabs_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116, 97, 98,115, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, 9,128, +194,132, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,115, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,118, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, + 0, 0, 0, 0, 0, 0,116, 97, 98, 99,104, 97,110,103,101, 95, 99, 98, 0, 4, + 3, 0, 0, 0, 0, 0, 0, 0,105,105, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, +102,117,110, 99,110, 97,109,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84, 97, + 98,115,118, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101,102, +117,110, 99, 0, 4,207, 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,105, 99, 32, +105,110,116, 32, 84, 97, 98,115,118, 40,108,117, 97, 95, 83,116, 97,116,101, 32, + 42, 76, 41, 10,123, 10, 32, 32, 73,104, 97,110,100,108,101, 32, 42, 42,104,108, +105,115,116, 32, 61, 32,105,117,112,108,117, 97, 95, 99,104,101, 99,107,105,104, + 97,110,100,108,101, 95, 97,114,114, 97,121, 40, 76, 44, 32, 49, 41, 59, 10, 32, + 32, 73,104, 97,110,100,108,101, 32, 42,104, 32, 61, 32, 73,117,112, 84, 97, 98, +115,118, 40,104,108,105,115,116, 41, 59, 10, 32, 32,105,117,112,108,117, 97, 95, +112,108,117,103,115,116, 97,116,101, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,105, +117,112,108,117, 97, 95,112,117,115,104,105,104, 97,110,100,108,101, 95,114, 97, +119, 40, 76, 44, 32,104, 41, 59, 10, 32, 32,102,114,101,101, 40,104,108,105,115, +116, 41, 59, 10, 32, 32,114,101,116,117,114,110, 32, 49, 59, 10,125, 10, 10, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 28, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,192, 0,128, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84, 97, 98,115,118, 0, 0, 0, + 0, 0, 5, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, + 0, 0, 28, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 23, 0, 0, 0, + 28, 0, 0, 0, 26, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 10, 0, 0, + 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tabs_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/text.loh b/iup/srclua5/loh/text.loh new file mode 100755 index 0000000..b84c5df --- /dev/null +++ b/iup/srclua5/loh/text.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/text.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/text.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,116,101,120, +116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 20, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74,192, 0, 0, 73, 0,194,131, 73,128,194,132, 73, 0,195,133, 9, 64, + 0,131,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64,128, 1, 30, 0, +128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, + 0,116,101,120,116, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, + 0, 0,110,115, 0, 4, 9, 0, 0, 0, 99, 97,114,101,116, 95, 99, 98, 0, 4, + 4, 0, 0, 0,110,110,110, 0, 4, 16, 0, 0, 0,118, 97,108,117,101, 99,104, + 97,110,103,101,100, 95, 99, 98, 0, 4, 1, 0, 0, 0, 0, 4, 14, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, + 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 17, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0, +128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 84, +101,120,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, 0, + 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, + 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 15, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 5, 0, + 0, 0, 99,116,114,108, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/text.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/text_be32.loh b/iup/srclua5/loh/text_be32.loh new file mode 100755 index 0000000..95d0d1d --- /dev/null +++ b/iup/srclua5/loh/text_be32.loh @@ -0,0 +1,40 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/text_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/text_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,116,101,120, +116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 20, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0,192, 74,131,194, 0, 73,132,194,128, 73,133,195, 0, 73,131, 0, + 64, 9, 0, 0, 0,100,134,128, 64, 9, 0, 3,128, 69, 0, 0, 0,128, 1, 0, + 64, 92, 0, 3,192, 69, 0, 0, 0,128, 0, 4, 0,193, 1,128, 64, 92, 0,128, + 0, 30, 0, 0, 0, 17, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, + 5,116,101,120,116, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, + 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116, +105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, + 98, 97, 99,107, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, + 0, 3,110,115, 0, 4, 0, 0, 0, 9, 99, 97,114,101,116, 95, 99, 98, 0, 4, + 0, 0, 0, 4,110,110,110, 0, 4, 0, 0, 0, 16,118, 97,108,117,101, 99,104, + 97,110,103,101,100, 95, 99, 98, 0, 4, 0, 0, 0, 1, 0, 4, 0, 0, 0, 14, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105, +117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, + 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105, +117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 17, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, + 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 5, 84, +101,120,116, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 99,116,114,108, 0, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/text_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/text_be64.loh b/iup/srclua5/loh/text_be64.loh new file mode 100755 index 0000000..08f9c73 --- /dev/null +++ b/iup/srclua5/loh/text_be64.loh @@ -0,0 +1,45 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/text_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/text_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116,101,120,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,192, 0, 0, 73, 0,194,131, 73,128,194,132, 73, 0, +195,133, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,101,120,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,114,101,116, 95, + 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 16, 0, 0, + 0, 0, 0, 0, 0,118, 97,108,117,101, 99,104, 97,110,103,101,100, 95, 99, 98, + 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, + 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101, +116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, + 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 84, +101,120,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 10, + 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/text_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/text_le64.loh b/iup/srclua5/loh/text_le64.loh new file mode 100755 index 0000000..d0a7678 --- /dev/null +++ b/iup/srclua5/loh/text_le64.loh @@ -0,0 +1,45 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/text_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/text_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116,101,120,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 20, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,192, 0, 0, 73, 0,194,131, 73,128,194,132, 73, 0, +195,133, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, 0,128, 0, + 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, 0, 92, 64, +128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,101,120,116, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, +114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, + 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, + 0, 0, 0, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, + 0, 0,110,115, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,114,101,116, 95, + 99, 98, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 16, 0, 0, + 0, 0, 0, 0, 0,118, 97,108,117,101, 99,104, 97,110,103,101,100, 95, 99, 98, + 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, + 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101, +116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, + 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, + 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 84, +101,120,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, + 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, + 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, + 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, + 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 10, + 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/text_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/text_le64w.loh b/iup/srclua5/loh/text_le64w.loh new file mode 100755 index 0000000..a78caf2 --- /dev/null +++ b/iup/srclua5/loh/text_le64w.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/text_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/text_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116,101,120,116, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 0, 0, 73, 0,194,131, 73,128,194,132, 9, 64, + 0,131,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0, +128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,116,101,120,116, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, + 0, 0, 97, 99,116,105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,115, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,114,101,116, 95, 99, 98, 0, 4, + 4, 0, 0, 0, 0, 0, 0, 0,110,110,110, 0, 4, 14, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101, +116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103, +101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, + 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, + 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, + 84,101,120,116, 0, 0, 0, 0, 0, 4, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, + 0, 15, 0, 0, 0, 16, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 16, + 0, 0, 0, 14, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 9, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/text_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/timer.loh b/iup/srclua5/loh/timer.loh new file mode 100755 index 0000000..2d6dfca --- /dev/null +++ b/iup/srclua5/loh/timer.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/timer.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/timer.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 11, 0, 0, 0, 64,116,105,109, +101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 18, + 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, + 64, 65,130, 74, 64, 0, 0, 73, 64,193,131, 9, 64, 0,131,100, 0, 0, 0, 9, + 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, 2, 0,128, + 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, 0, 0, 0, 4, + 5, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, 0, 0,116,105,109,101,114, 0, + 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, + 0, 0, 0, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, + 0, 0, 0, 97, 99,116,105,111,110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, + 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 15, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0, +158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 84,105,109, +101,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, + 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, + 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, + 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 8, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/timer.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/timer_be32.loh b/iup/srclua5/loh/timer_be32.loh new file mode 100755 index 0000000..073d341 --- /dev/null +++ b/iup/srclua5/loh/timer_be32.loh @@ -0,0 +1,37 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/timer_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/timer_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 11, 64,116,105,109, +101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, + 0, 0, 18, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, + 65, 64, 9, 0, 0, 64, 74,131,193, 64, 73,131, 0, 64, 9, 0, 0, 0,100,132, + 0, 64, 9, 0, 2, 64, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,128, 69, 0, + 0, 0,128, 0, 2,192,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 12, 4, + 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 6,116,105,109,101,114, 0, + 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, + 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, + 0, 0, 1, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, + 0, 0, 10, 97, 99,116,105,111,110, 95, 99, 98, 0, 4, 0, 0, 0, 14, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, + 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, + 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 15, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, + 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 6, 84,105,109, +101,114, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 14, 0, + 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, + 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/timer_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/timer_be64.loh b/iup/srclua5/loh/timer_be64.loh new file mode 100755 index 0000000..182b3fd --- /dev/null +++ b/iup/srclua5/loh/timer_be64.loh @@ -0,0 +1,41 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/timer_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/timer_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,116,105,109,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 64,193,131, 9, 64, 0,131,100, + 0, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,116,105,109,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 97, + 99,116,105,111,110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, + 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, + 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84,105,109, +101,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, + 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/timer_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/timer_le64.loh b/iup/srclua5/loh/timer_le64.loh new file mode 100755 index 0000000..fddb2b5 --- /dev/null +++ b/iup/srclua5/loh/timer_le64.loh @@ -0,0 +1,41 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/timer_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/timer_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,116,105,109,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 64,193,131, 9, 64, 0,131,100, + 0, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,116,105,109,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 97, + 99,116,105,111,110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, + 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, + 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84,105,109, +101,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, + 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/timer_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/timer_le64w.loh b/iup/srclua5/loh/timer_le64w.loh new file mode 100755 index 0000000..26126ce --- /dev/null +++ b/iup/srclua5/loh/timer_le64w.loh @@ -0,0 +1,41 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/timer_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/timer_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 64,116,105,109,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, + 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 64,193,131, 9, 64, 0,131,100, + 0, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, +128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 6, 0, + 0, 0, 0, 0, 0, 0,116,105,109,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, + 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 97, + 99,116,105,111,110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, + 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, + 30, 0,128, 0, 1, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 84,105,109, +101,114, 0, 0, 0, 0, 0, 4, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, + 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 0, 0, 0, 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/timer_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/toggle.loh b/iup/srclua5/loh/toggle.loh new file mode 100755 index 0000000..c1580f0 --- /dev/null +++ b/iup/srclua5/loh/toggle.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/toggle.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/toggle.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 12, 0, 0, 0, 64,116,111,103, +103,108,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, + 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131,100, 0, 0, 0, + 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0, +128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, + 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 7, 0, 0, 0,116,111,103,103,108, +101, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 3, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 7, 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 2, 0, 0, 0,110, + 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 7, 0, 0, 0, 84,111,103,103,108,101, 0, 4, 6, 0, 0, + 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, 0, 0, 14, + 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, 0, 0, 6, + 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/toggle.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/toggle_be32.loh b/iup/srclua5/loh/toggle_be32.loh new file mode 100755 index 0000000..1aef13a --- /dev/null +++ b/iup/srclua5/loh/toggle_be32.loh @@ -0,0 +1,38 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/toggle_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/toggle_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 12, 64,116,111,103, +103,108,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, + 0, 0, 0, 18, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9, +130, 65, 64, 9, 0, 0, 64, 74,131,194, 0, 73,131, 0, 64, 9, 0, 0, 0,100, +132,128, 64, 9, 0, 2,128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,192, 69, + 0, 0, 0,128, 0, 3, 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 13, + 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 7,116,111,103,103,108, +101, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, + 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, + 4, 0, 0, 0, 3, 83, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 0, 0, 0, 7, 97, 99,116,105,111,110, 0, 4, 0, 0, 0, 2,110, + 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 2, 0, 4, 0, 0, 0, 5, + 0, 0, 0,133, 0,192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, 0, 30, + 0, 0, 0, 2, 4, 0, 0, 0, 7, 84,111,103,103,108,101, 0, 4, 0, 0, 0, + 6,116,105,116,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 14, 0, + 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 2, 0, + 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, + 13, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, + 5, 99,116,114,108, 0, 0, 0, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/toggle_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/toggle_be64.loh b/iup/srclua5/loh/toggle_be64.loh new file mode 100755 index 0000000..523e6c2 --- /dev/null +++ b/iup/srclua5/loh/toggle_be64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/toggle_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/toggle_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,116,111,103,103,108,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,116,111,103,103,108,101, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 84,111,103,103,108,101, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, + 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/toggle_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/toggle_le64.loh b/iup/srclua5/loh/toggle_le64.loh new file mode 100755 index 0000000..41686fb --- /dev/null +++ b/iup/srclua5/loh/toggle_le64.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/toggle_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/toggle_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,116,111,103,103,108,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,116,111,103,103,108,101, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 84,111,103,103,108,101, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, + 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/toggle_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/toggle_le64w.loh b/iup/srclua5/loh/toggle_le64w.loh new file mode 100755 index 0000000..21b2417 --- /dev/null +++ b/iup/srclua5/loh/toggle_le64w.loh @@ -0,0 +1,42 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/toggle_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/toggle_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 64,116,111,103,103,108,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 4, 18, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, + 9, 64, 0,129, 9, 64, 65,130, 74, 64, 0, 0, 73, 0,194,131, 9, 64, 0,131, +100, 0, 0, 0, 9, 64,128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, + 69,192, 2, 0,128, 0, 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, + 13, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 7, + 0, 0, 0, 0, 0, 0, 0,116,111,103,103,108,101, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, + 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +105,111,110, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 83, 45, 0, 4, 9, 0, 0, + 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0, 97, 99,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, + 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109, +101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105, +115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 15, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0, +133, 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 84,111,103,103,108,101, 0, + 4, 6, 0, 0, 0, 0, 0, 0, 0,116,105,116,108,101, 0, 0, 0, 0, 0, 5, + 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 15, + 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 9, 0, 0, 0, 10, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, 0, 17, 0, 0, + 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 18, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, + 0, 99,116,114,108, 0, 8, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/toggle_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/tree.loh b/iup/srclua5/loh/tree.loh new file mode 100755 index 0000000..160153d --- /dev/null +++ b/iup/srclua5/loh/tree.loh @@ -0,0 +1,177 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tree.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tree.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,116,114,101, +101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 37, 0, + 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74,192, 2, 0, 73, 0,194,131, 73, 0,194,132, 73,192, 66,133, 73,192, + 66,134, 73,192,194,134, 73,192, 67,135, 73,192, 67,136, 73,192,195,136, 73,192, + 66,137, 73,192,194,137, 73, 64, 69,138, 9, 64, 0,131, 9,192, 69,139,100, 0, + 0, 0,164, 64, 0, 0, 0, 0,128, 0,135, 0, 6, 0,164,128, 0, 0,135, 64, + 6, 0,164,192, 0, 0,135,128, 6, 0,164, 0, 1, 0, 9,128,128,141,133, 0, + 7, 0,192, 0, 0, 0,156, 64, 0, 1,133, 64, 7, 0,192, 0, 0, 0, 1,129, + 7, 0,156, 64,128, 1, 30, 0,128, 0, 31, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,116,114,101,101, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0,115,101,108, +101, 99,116,105,111,110, 95, 99, 98, 0, 4, 3, 0, 0, 0,110,110, 0, 4, 18, + 0, 0, 0,109,117,108,116,105,115,101,108,101, 99,116,105,111,110, 95, 99, 98, + 0, 4, 14, 0, 0, 0, 98,114, 97,110, 99,104,111,112,101,110, 95, 99, 98, 0, + 4, 2, 0, 0, 0,110, 0, 4, 15, 0, 0, 0, 98,114, 97,110, 99,104, 99,108, +111,115,101, 95, 99, 98, 0, 4, 15, 0, 0, 0,101,120,101, 99,117,116,101,108, +101, 97,102, 95, 99, 98, 0, 4, 14, 0, 0, 0,114,101,110, 97,109,101,110,111, +100,101, 95, 99, 98, 0, 4, 3, 0, 0, 0,110,115, 0, 4, 15, 0, 0, 0,110, +111,100,101,114,101,109,111,118,101,100, 95, 99, 98, 0, 4, 10, 0, 0, 0,114, +101,110, 97,109,101, 95, 99, 98, 0, 4, 14, 0, 0, 0,115,104,111,119,114,101, +110, 97,109,101, 95, 99, 98, 0, 4, 14, 0, 0, 0,114,105,103,104,116, 99,108, +105, 99,107, 95, 99, 98, 0, 4, 12, 0, 0, 0,100,114, 97,103,100,114,111,112, + 95, 99, 98, 0, 4, 5, 0, 0, 0,110,110,110,110, 0, 4, 11, 0, 0, 0,101, +120,116,114, 97,102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, + 18, 0, 0, 0, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, + 98, 0, 4, 16, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, 82, +101, 99, 0, 4, 13, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 27, 0, 0, 0, 0, 3, 0, 7, 15, 0, 0, 0, +197, 0, 0, 0, 0, 1, 0, 1,220,128, 0, 1, 23, 64,192, 1, 22,192, 0,128, +197,128, 0, 0, 0, 1, 0, 1,220,128, 0, 1,128, 0,128, 1,197,192, 0, 0, + 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, 0, + 4, 0, 0, 0, 4, 12, 0, 0, 0,105,117,112, 71,101,116, 67,108, 97,115,115, + 0, 4, 11, 0, 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 16, 0, + 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 13, + 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 27, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 5, 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 6, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 1, 3, + 0, 7, 69, 0, 0, 0,198, 0,192, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65,129, 0, 0,128, 1, 0, 1, 85,129,129, 2,134, 1, +192, 0,220, 64, 0, 2,198,192,192, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65, 1, 1, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +192, 0,220, 64, 0, 2,198, 64,193, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65,129, 1, 0,128, 1, 0, 1, 85,129,129, 2,134, 65, +193, 0,220, 64, 0, 2,198,192,193, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65, 1, 2, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +193, 0,220, 64, 0, 2,198, 64,194, 0,218, 0, 0, 0, 22,128, 1,128,196, 0, + 0, 0, 0, 1, 0, 0, 65,129, 2, 0,128, 1, 0, 1, 85,129,129, 2,134, 65, +194, 0,220, 64, 0, 2,198,192,194, 0,218, 0, 0, 0, 22,128, 1,128,196, 0, + 0, 0, 0, 1, 0, 0, 65, 1, 3, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +194, 0,220, 64, 0, 2,198, 64,195, 0,218, 0, 0, 0, 22, 0, 1,128,197,128, + 3, 0, 0, 1, 0, 0, 64, 1, 0, 1,134, 65,195, 0,220, 64, 0, 2, 30, 0, +128, 0, 15, 0, 0, 0, 4, 6, 0, 0, 0, 99,111,108,111,114, 0, 4, 13, 0, + 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 6, 0, 0, 0, + 67, 79, 76, 79, 82, 0, 4, 6, 0, 0, 0,115,116, 97,116,101, 0, 4, 6, 0, + 0, 0, 83, 84, 65, 84, 69, 0, 4, 10, 0, 0, 0,116,105,116,108,101,102,111, +110,116, 0, 4, 10, 0, 0, 0, 84, 73, 84, 76, 69, 70, 79, 78, 84, 0, 4, 7, + 0, 0, 0,109, 97,114,107,101,100, 0, 4, 7, 0, 0, 0, 77, 65, 82, 75, 69, + 68, 0, 4, 6, 0, 0, 0,105,109, 97,103,101, 0, 4, 6, 0, 0, 0, 73, 77, + 65, 71, 69, 0, 4, 14, 0, 0, 0,105,109, 97,103,101,101,120,112, 97,110,100, +101,100, 0, 4, 14, 0, 0, 0, 73, 77, 65, 71, 69, 69, 88, 80, 65, 78, 68, 69, + 68, 0, 4, 7, 0, 0, 0,117,115,101,114,105,100, 0, 4, 14, 0, 0, 0, 84, +114,101,101, 83,101,116, 85,115,101,114, 73,100, 0, 0, 0, 0, 0, 69, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, + 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 68, 0, 0, 0, + 5, 0, 0, 0,110,111,100,101, 0, 0, 0, 0, 0, 68, 0, 0, 0, 3, 0, 0, + 0,105,100, 0, 0, 0, 0, 0, 68, 0, 0, 0, 1, 0, 0, 0, 23, 0, 0, 0, + 84,114,101,101, 83,101,116, 65,116,116,114,105, 98,117,116,101, 72, 97,110,100, +108,101, 0, 0, 0, 0, 0, 39, 0, 0, 0, 60, 0, 0, 0, 0, 3, 0, 9, 61, + 0, 0, 0, 23, 0,192, 0, 22, 0, 0,128, 30, 0,128, 0,212, 0,128, 0, 25, +192,128,128, 22, 64, 13,128, 6,193,128, 0, 69,129, 0, 0,128, 1, 0, 2, 92, +129, 0, 1, 23,192,192, 2, 22, 0, 9,128, 70, 1, 65, 2, 90, 1, 0, 0, 22, + 64, 4,128, 69, 65, 1, 0,128, 1, 0, 0,193,129, 1, 0, 0, 2, 0, 1,213, + 1,130, 3, 6, 2, 65, 2, 92, 65, 0, 2, 69,193, 1, 0,128, 1, 0, 0,192, + 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 69, 65, 2, 0,128, 1, 0, 0,192, + 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 22, 0, 6,128, 70,129, 66, 2, 90, + 1, 0, 0, 22, 64, 5,128, 69, 65, 1, 0,128, 1, 0, 0,193,193, 2, 0, 0, + 2, 0, 1,213, 1,130, 3, 6,130, 66, 2, 92, 65, 0, 2, 69,193, 1, 0,128, + 1, 0, 0,192, 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 22, 0, 2,128, 26, + 1, 0, 0, 22,128, 1,128, 69, 65, 1, 0,128, 1, 0, 0,193,193, 2, 0, 0, + 2, 0, 1,213, 1,130, 3, 0, 2, 0, 2, 92, 65, 0, 2,205, 0,194, 1, 22, +192,241,127, 30, 0,128, 0, 12, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 5, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0,116, 97, 98,108, +101, 0, 4, 11, 0, 0, 0, 98,114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, + 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 10, 0, 0, + 0, 65, 68, 68, 66, 82, 65, 78, 67, 72, 0, 4, 18, 0, 0, 0, 84,114,101,101, + 83,101,116, 78,111,100,101, 65,116,116,114,105, 98, 0, 3, 0, 0, 0, 0, 0, + 0,240, 63, 4, 16, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 82,101, 99, 0, 4, 9, 0, 0, 0,108,101, 97,102,110, 97,109,101, 0, 4, 8, + 0, 0, 0, 65, 68, 68, 76, 69, 65, 70, 0, 0, 0, 0, 0, 61, 0, 0, 0, 40, + 0, 0, 0, 40, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, + 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, + 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, + 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, + 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, + 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, + 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, + 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 54, 0, 0, 0, 54, + 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, + 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 58, 0, 0, 0, 58, 0, 0, 0, 60, + 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 60, 0, 0, 0, 2, 0, 0, 0,116, 0, 0, 0, 0, 0, 60, 0, 0, 0, + 3, 0, 0, 0,105,100, 0, 0, 0, 0, 0, 60, 0, 0, 0, 5, 0, 0, 0, 99, +111,110,116, 0, 4, 0, 0, 0, 60, 0, 0, 0, 5, 0, 0, 0,110,111,100,101, + 0, 7, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, + 0, 69, 0, 0, 0, 0, 3, 0, 7, 22, 0, 0, 0,154, 64, 0, 0, 22, 64, 3, +128,129, 0, 0, 0,198, 64,192, 0,218, 0, 0, 0, 22, 0, 1,128,197,128, 0, + 0, 0, 1, 0, 0, 65,193, 0, 0,134, 65,192, 0,220, 64, 0, 2,197, 0, 1, + 0, 0, 1, 0, 0, 64, 1,128, 0,129, 1, 0, 0,220, 64, 0, 2,197, 64, 1, + 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, + 0, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 0, 0, 0, 98, +114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, 0, 0, 0, 83,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 7, 0, 0, 0, 84, 73, 84, 76, 69, 48, 0, + 4, 18, 0, 0, 0, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114, +105, 98, 0, 4, 16, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 82,101, 99, 0, 0, 0, 0, 0, 22, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, + 64, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, + 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, + 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 68, 0, 0, 0, + 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 21, + 0, 0, 0, 2, 0, 0, 0,116, 0, 0, 0, 0, 0, 21, 0, 0, 0, 3, 0, 0, + 0,105,100, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 71, 0, 0, 0, 73, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0, +157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, + 0, 84,114,101,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 72, 0, 0, 0, 72, 0, + 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, + 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, + 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, + 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 27, 0, 0, 0, 37, 0, 0, 0, + 37, 0, 0, 0, 29, 0, 0, 0, 60, 0, 0, 0, 39, 0, 0, 0, 69, 0, 0, 0, + 62, 0, 0, 0, 73, 0, 0, 0, 71, 0, 0, 0, 75, 0, 0, 0, 75, 0, 0, 0, + 75, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, + 76, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 19, 0, 0, + 0, 36, 0, 0, 0, 23, 0, 0, 0, 84,114,101,101, 83,101,116, 65,116,116,114, +105, 98,117,116,101, 72, 97,110,100,108,101, 0, 20, 0, 0, 0, 36, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tree.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tree_be32.loh b/iup/srclua5/loh/tree_be32.loh new file mode 100755 index 0000000..3f6adfa --- /dev/null +++ b/iup/srclua5/loh/tree_be32.loh @@ -0,0 +1,177 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tree_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tree_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,116,114,101, +101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, + 0, 37, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 2,192, 74,131,194, 0, 73,132,194, 0, 73,133, 66,192, 73,134, 66, +192, 73,134,194,192, 73,135, 67,192, 73,136, 67,192, 73,136,195,192, 73,137, 66, +192, 73,137,194,192, 73,138, 69, 64, 73,131, 0, 64, 9,139, 69,192, 9, 0, 0, + 0,100, 0, 0, 64,164, 0,128, 0, 0, 0, 6, 0,135, 0, 0,128,164, 0, 6, + 64,135, 0, 0,192,164, 0, 6,128,135, 0, 1, 0,164,141,128,128, 9, 0, 7, + 0,133, 0, 0, 0,192, 1, 0, 64,156, 0, 7, 64,133, 0, 0, 0,192, 0, 7, +129, 1, 1,128, 64,156, 0,128, 0, 30, 0, 0, 0, 31, 4, 0, 0, 0, 5,110, +105, 99,107, 0, 4, 0, 0, 0, 5,116,114,101,101, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, + 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, + 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 13,115,101,108, +101, 99,116,105,111,110, 95, 99, 98, 0, 4, 0, 0, 0, 3,110,110, 0, 4, 0, + 0, 0, 18,109,117,108,116,105,115,101,108,101, 99,116,105,111,110, 95, 99, 98, + 0, 4, 0, 0, 0, 14, 98,114, 97,110, 99,104,111,112,101,110, 95, 99, 98, 0, + 4, 0, 0, 0, 2,110, 0, 4, 0, 0, 0, 15, 98,114, 97,110, 99,104, 99,108, +111,115,101, 95, 99, 98, 0, 4, 0, 0, 0, 15,101,120,101, 99,117,116,101,108, +101, 97,102, 95, 99, 98, 0, 4, 0, 0, 0, 14,114,101,110, 97,109,101,110,111, +100,101, 95, 99, 98, 0, 4, 0, 0, 0, 3,110,115, 0, 4, 0, 0, 0, 15,110, +111,100,101,114,101,109,111,118,101,100, 95, 99, 98, 0, 4, 0, 0, 0, 10,114, +101,110, 97,109,101, 95, 99, 98, 0, 4, 0, 0, 0, 14,115,104,111,119,114,101, +110, 97,109,101, 95, 99, 98, 0, 4, 0, 0, 0, 14,114,105,103,104,116, 99,108, +105, 99,107, 95, 99, 98, 0, 4, 0, 0, 0, 12,100,114, 97,103,100,114,111,112, + 95, 99, 98, 0, 4, 0, 0, 0, 5,110,110,110,110, 0, 4, 0, 0, 0, 11,101, +120,116,114, 97,102,117,110, 99,115, 0, 3, 63,240, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 18, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, + 98, 0, 4, 0, 0, 0, 16, 84,114,101,101, 83,101,116, 86, 97,108,117,101, 82, +101, 99, 0, 4, 0, 0, 0, 13, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, 0, + 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103, +101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 27, 0, 3, 0, 7, 0, 0, 0, 15, + 0, 0, 0,197, 1, 0, 1, 0, 1, 0,128,220, 1,192, 64, 23,128, 0,192, 22, + 0, 0,128,197, 1, 0, 1, 0, 1, 0,128,220, 1,128, 0,128, 0, 0,192,197, + 0, 0, 1, 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, 30, + 0, 0, 0, 4, 4, 0, 0, 0, 12,105,117,112, 71,101,116, 67,108, 97,115,115, + 0, 4, 0, 0, 0, 11,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 0, 0, + 0, 16,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 0, + 0, 0, 13, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, + 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, + 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, + 0, 0, 0, 27, 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 5,110, 97,109,101, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 6,118, 97,108,117,101, 0, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 1, 3, + 0, 7, 0, 0, 0, 69, 0,192, 0,198, 0, 0, 0,218,128, 1,128, 22, 0, 0, + 64,197, 0, 0, 1, 0, 0, 0,129, 65, 1, 0, 1,128, 2,129,129, 85, 0,192, + 1,134, 2, 0, 64,220, 0,192,192,198, 0, 0, 0,218,128, 1,128, 22, 0, 0, + 64,197, 0, 0, 1, 0, 0, 1, 1, 65, 1, 0, 1,128, 2,129,129, 85, 0,192, +193,134, 2, 0, 64,220, 0,193, 64,198, 0, 0, 0,218,128, 1,128, 22, 0, 0, + 64,197, 0, 0, 1, 0, 0, 1,129, 65, 1, 0, 1,128, 2,129,129, 85, 0,193, + 65,134, 2, 0, 64,220, 0,193,192,198, 0, 0, 0,218,128, 1,128, 22, 0, 0, + 64,197, 0, 0, 1, 0, 0, 2, 1, 65, 1, 0, 1,128, 2,129,129, 85, 0,193, +193,134, 2, 0, 64,220, 0,194, 64,198, 0, 0, 0,218,128, 1,128, 22, 0, 0, + 0,196, 0, 0, 1, 0, 0, 2,129, 65, 1, 0, 1,128, 2,129,129, 85, 0,194, + 65,134, 2, 0, 64,220, 0,194,192,198, 0, 0, 0,218,128, 1,128, 22, 0, 0, + 0,196, 0, 0, 1, 0, 0, 3, 1, 65, 1, 0, 1,128, 2,129,129, 85, 0,194, +193,134, 2, 0, 64,220, 0,195, 64,198, 0, 0, 0,218,128, 1, 0, 22, 0, 3, +128,197, 0, 0, 1, 0, 1, 0, 1, 64, 0,195, 65,134, 2, 0, 64,220, 0,128, + 0, 30, 0, 0, 0, 15, 4, 0, 0, 0, 6, 99,111,108,111,114, 0, 4, 0, 0, + 0, 13, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 0, 0, 0, 6, + 67, 79, 76, 79, 82, 0, 4, 0, 0, 0, 6,115,116, 97,116,101, 0, 4, 0, 0, + 0, 6, 83, 84, 65, 84, 69, 0, 4, 0, 0, 0, 10,116,105,116,108,101,102,111, +110,116, 0, 4, 0, 0, 0, 10, 84, 73, 84, 76, 69, 70, 79, 78, 84, 0, 4, 0, + 0, 0, 7,109, 97,114,107,101,100, 0, 4, 0, 0, 0, 7, 77, 65, 82, 75, 69, + 68, 0, 4, 0, 0, 0, 6,105,109, 97,103,101, 0, 4, 0, 0, 0, 6, 73, 77, + 65, 71, 69, 0, 4, 0, 0, 0, 14,105,109, 97,103,101,101,120,112, 97,110,100, +101,100, 0, 4, 0, 0, 0, 14, 73, 77, 65, 71, 69, 69, 88, 80, 65, 78, 68, 69, + 68, 0, 4, 0, 0, 0, 7,117,115,101,114,105,100, 0, 4, 0, 0, 0, 14, 84, +114,101,101, 83,101,116, 85,115,101,114, 73,100, 0, 0, 0, 0, 0, 0, 0, 0, + 69, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, + 30, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, + 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, + 32, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, + 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, + 33, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, + 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, + 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, + 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, + 35, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, + 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, + 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 68, + 0, 0, 0, 5,110,111,100,101, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, + 3,105,100, 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 1, 0, 0, 0, 23, + 84,114,101,101, 83,101,116, 65,116,116,114,105, 98,117,116,101, 72, 97,110,100, +108,101, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 60, 0, 3, 0, 9, 0, + 0, 0, 61, 0,192, 0, 23,128, 0, 0, 22, 0,128, 0, 30, 0,128, 0,212,128, +128,192, 25,128, 13, 64, 22, 0,128,193, 6, 0, 0,129, 69, 2, 0, 1,128, 1, + 0,129, 92, 2,192,192, 23,128, 9, 0, 22, 2, 65, 1, 70, 0, 0, 1, 90,128, + 4, 64, 22, 0, 1, 65, 69, 0, 0, 1,128, 0, 1,129,193, 1, 0, 2, 0, 3, +130, 1,213, 2, 65, 2, 6, 2, 0, 65, 92, 0, 1,193, 69, 0, 0, 1,128, 2, + 0, 1,192, 1, 66, 2, 12, 2, 0, 65, 92, 0, 2, 65, 69, 0, 0, 1,128, 2, + 0, 1,192, 1, 66, 2, 12, 2, 0, 65, 92,128, 6, 0, 22, 2, 66,129, 70, 0, + 0, 1, 90,128, 5, 64, 22, 0, 1, 65, 69, 0, 0, 1,128, 0, 2,193,193, 1, + 0, 2, 0, 3,130, 1,213, 2, 66,130, 6, 2, 0, 65, 92, 0, 1,193, 69, 0, + 0, 1,128, 2, 0, 1,192, 1, 66, 2, 12, 2, 0, 65, 92,128, 2, 0, 22, 0, + 0, 1, 26,128, 1,128, 22, 0, 1, 65, 69, 0, 0, 1,128, 0, 2,193,193, 1, + 0, 2, 0, 3,130, 1,213, 2, 0, 2, 0, 2, 0, 65, 92, 1,194, 0,205,127, +241,192, 22, 0,128, 0, 30, 0, 0, 0, 12, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 5,116,121,112,101, 0, 4, 0, 0, 0, 6,116, 97, 98,108, +101, 0, 4, 0, 0, 0, 11, 98,114, 97,110, 99,104,110, 97,109,101, 0, 4, 0, + 0, 0, 13, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 0, 0, 0, + 10, 65, 68, 68, 66, 82, 65, 78, 67, 72, 0, 4, 0, 0, 0, 18, 84,114,101,101, + 83,101,116, 78,111,100,101, 65,116,116,114,105, 98, 0, 3, 63,240, 0, 0, 0, + 0, 0, 0, 4, 0, 0, 0, 16, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 82,101, 99, 0, 4, 0, 0, 0, 9,108,101, 97,102,110, 97,109,101, 0, 4, 0, + 0, 0, 8, 65, 68, 68, 76, 69, 65, 70, 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, + 0, 0, 40, 0, 0, 0, 40, 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, + 0, 0, 42, 0, 0, 0, 43, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, + 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, + 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, + 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, + 0, 0, 49, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, + 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, + 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 54, 0, + 0, 0, 54, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, + 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 58, 0, 0, 0, 58, 0, + 0, 0, 60, 0, 0, 0, 5, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 0, 0, 0, 60, 0, 0, 0, 2,116, 0, 0, 0, 0, 0, 0, 0, 0, 60, + 0, 0, 0, 3,105,100, 0, 0, 0, 0, 0, 0, 0, 0, 60, 0, 0, 0, 5, 99, +111,110,116, 0, 0, 0, 0, 4, 0, 0, 0, 60, 0, 0, 0, 5,110,111,100,101, + 0, 0, 0, 0, 7, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 62, 0, 0, 0, 69, 0, 3, 0, 7, 0, 0, 0, 22, 0, 0, 64,154,128, 3, 64, + 22, 0, 0, 0,129, 0,192, 64,198, 0, 0, 0,218,128, 1, 0, 22, 0, 0,128, +197, 0, 0, 1, 0, 0, 0,193, 65, 0,192, 65,134, 2, 0, 64,220, 0, 1, 0, +197, 0, 0, 1, 0, 0,128, 1, 64, 0, 0, 1,129, 2, 0, 64,220, 0, 1, 64, +197, 0, 0, 1, 0, 0,128, 1, 64, 1, 0, 1,128, 2, 0, 64,220, 0,128, 0, + 30, 0, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 11, 98, +114, 97,110, 99,104,110, 97,109,101, 0, 4, 0, 0, 0, 13, 83,101,116, 65,116, +116,114,105, 98,117,116,101, 0, 4, 0, 0, 0, 7, 84, 73, 84, 76, 69, 48, 0, + 4, 0, 0, 0, 18, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114, +105, 98, 0, 4, 0, 0, 0, 16, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 82,101, 99, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 63, 0, 0, 0, 63, + 0, 0, 0, 64, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, + 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 66, + 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 68, + 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, + 0, 0, 0, 3, 0, 0, 0, 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, + 0, 0, 21, 0, 0, 0, 2,116, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, + 3,105,100, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 71, 0, 0, 0, 73, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, + 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, + 5, 84,114,101,101, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 72, 0, 0, + 0, 72, 0, 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, + 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, + 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 4, + 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, + 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, 0, 13, + 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 18, + 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 27, 0, 0, 0, 37, + 0, 0, 0, 37, 0, 0, 0, 29, 0, 0, 0, 60, 0, 0, 0, 39, 0, 0, 0, 69, + 0, 0, 0, 62, 0, 0, 0, 73, 0, 0, 0, 71, 0, 0, 0, 75, 0, 0, 0, 75, + 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, 76, + 0, 0, 0, 76, 0, 0, 0, 2, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, + 19, 0, 0, 0, 36, 0, 0, 0, 23, 84,114,101,101, 83,101,116, 65,116,116,114, +105, 98,117,116,101, 72, 97,110,100,108,101, 0, 0, 0, 0, 20, 0, 0, 0, 36, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tree_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tree_be64.loh b/iup/srclua5/loh/tree_be64.loh new file mode 100755 index 0000000..49a23fa --- /dev/null +++ b/iup/srclua5/loh/tree_be64.loh @@ -0,0 +1,195 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tree_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tree_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116,114,101,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 5, 37, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,192, 2, 0, 73, 0,194,131, 73, 0,194,132, 73,192, + 66,133, 73,192, 66,134, 73,192,194,134, 73,192, 67,135, 73,192, 67,136, 73,192, +195,136, 73,192, 66,137, 73,192,194,137, 73, 64, 69,138, 9, 64, 0,131, 9,192, + 69,139,100, 0, 0, 0,164, 64, 0, 0, 0, 0,128, 0,135, 0, 6, 0,164,128, + 0, 0,135, 64, 6, 0,164,192, 0, 0,135,128, 6, 0,164, 0, 1, 0, 9,128, +128,141,133, 0, 7, 0,192, 0, 0, 0,156, 64, 0, 1,133, 64, 7, 0,192, 0, + 0, 0, 1,129, 7, 0,156, 64,128, 1, 30, 0,128, 0, 31, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,116,114,101,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,115,101,108,101, 99,116,105, +111,110, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 18, + 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105,115,101,108,101, 99,116,105,111, +110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 98,114, 97,110, 99,104, +111,112,101,110, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, + 15, 0, 0, 0, 0, 0, 0, 0, 98,114, 97,110, 99,104, 99,108,111,115,101, 95, + 99, 98, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,101,120,101, 99,117,116,101,108, +101, 97,102, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,114,101,110, 97, +109,101,110,111,100,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110, +115, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,110,111,100,101,114,101,109,111,118, +101,100, 95, 99, 98, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,114,101,110, 97,109, +101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,104,111,119,114,101, +110, 97,109,101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,114,105,103, +104,116, 99,108,105, 99,107, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +100,114, 97,103,100,114,111,112, 95, 99, 98, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,110,110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97, +102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 18, 0, 0, 0, + 0, 0, 0, 0, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, + 98, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97, +108,117,101, 82,101, 99, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, + 83,101,116, 86, 97,108,117,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 27, 0, 0, 0, + 0, 3, 0, 7, 15, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 1,220,128, 0, 1, + 23, 64,192, 1, 22,192, 0,128,197,128, 0, 0, 0, 1, 0, 1,220,128, 0, 1, +128, 0,128, 1,197,192, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1, +220, 64, 0, 2, 30, 0,128, 0, 4, 0, 0, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 16, 0, 0, 0, 0, 0, + 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 26, 0, 0, 0, 27, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 1, 3, + 0, 7, 69, 0, 0, 0,198, 0,192, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65,129, 0, 0,128, 1, 0, 1, 85,129,129, 2,134, 1, +192, 0,220, 64, 0, 2,198,192,192, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65, 1, 1, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +192, 0,220, 64, 0, 2,198, 64,193, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65,129, 1, 0,128, 1, 0, 1, 85,129,129, 2,134, 65, +193, 0,220, 64, 0, 2,198,192,193, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65, 1, 2, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +193, 0,220, 64, 0, 2,198, 64,194, 0,218, 0, 0, 0, 22,128, 1,128,196, 0, + 0, 0, 0, 1, 0, 0, 65,129, 2, 0,128, 1, 0, 1, 85,129,129, 2,134, 65, +194, 0,220, 64, 0, 2,198,192,194, 0,218, 0, 0, 0, 22,128, 1,128,196, 0, + 0, 0, 0, 1, 0, 0, 65, 1, 3, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +194, 0,220, 64, 0, 2,198, 64,195, 0,218, 0, 0, 0, 22, 0, 1,128,197,128, + 3, 0, 0, 1, 0, 0, 64, 1, 0, 1,134, 65,195, 0,220, 64, 0, 2, 30, 0, +128, 0, 15, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 99,111,108,111,114, + 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117, +116,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 67, 79, 76, 79, 82, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,101, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 83, 84, 65, 84, 69, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,116,105,116, +108,101,102,111,110,116, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 84, 73, 84, 76, + 69, 70, 79, 78, 84, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107,101, +100, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 77, 65, 82, 75, 69, 68, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 73, 77, 65, 71, 69, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,109, 97, +103,101,101,120,112, 97,110,100,101,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 73, 77, 65, 71, 69, 69, 88, 80, 65, 78, 68, 69, 68, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,117,115,101,114,105,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 84, +114,101,101, 83,101,116, 85,115,101,114, 73,100, 0, 0, 0, 0, 0, 69, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, + 68, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110,111,100,101, 0, 0, 0, 0, + 0, 68, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, + 68, 0, 0, 0, 1, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, + 83,101,116, 65,116,116,114,105, 98,117,116,101, 72, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 60, 0, 0, 0, 0, 3, 0, 9, 61, + 0, 0, 0, 23, 0,192, 0, 22, 0, 0,128, 30, 0,128, 0,212, 0,128, 0, 25, +192,128,128, 22, 64, 13,128, 6,193,128, 0, 69,129, 0, 0,128, 1, 0, 2, 92, +129, 0, 1, 23,192,192, 2, 22, 0, 9,128, 70, 1, 65, 2, 90, 1, 0, 0, 22, + 64, 4,128, 69, 65, 1, 0,128, 1, 0, 0,193,129, 1, 0, 0, 2, 0, 1,213, + 1,130, 3, 6, 2, 65, 2, 92, 65, 0, 2, 69,193, 1, 0,128, 1, 0, 0,192, + 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 69, 65, 2, 0,128, 1, 0, 0,192, + 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 22, 0, 6,128, 70,129, 66, 2, 90, + 1, 0, 0, 22, 64, 5,128, 69, 65, 1, 0,128, 1, 0, 0,193,193, 2, 0, 0, + 2, 0, 1,213, 1,130, 3, 6,130, 66, 2, 92, 65, 0, 2, 69,193, 1, 0,128, + 1, 0, 0,192, 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 22, 0, 2,128, 26, + 1, 0, 0, 22,128, 1,128, 69, 65, 1, 0,128, 1, 0, 0,193,193, 2, 0, 0, + 2, 0, 1,213, 1,130, 3, 0, 2, 0, 2, 92, 65, 0, 2,205, 0,194, 1, 22, +192,241,127, 30, 0,128, 0, 12, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0, + 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 98, +114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 83, +101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0, 65, 68, 68, 66, 82, 65, 78, 67, 72, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, + 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, 98, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, + 83,101,116, 86, 97,108,117,101, 82,101, 99, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,108,101, 97,102,110, 97,109,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 65, + 68, 68, 76, 69, 65, 70, 0, 0, 0, 0, 0, 61, 0, 0, 0, 40, 0, 0, 0, 40, + 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, + 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, + 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, + 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 50, + 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, + 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, + 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 55, + 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, + 0, 0, 0, 55, 0, 0, 0, 58, 0, 0, 0, 58, 0, 0, 0, 60, 0, 0, 0, 5, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 60, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, 0, 0, 0, + 60, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, 60, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,111,110,116, 0, 4, 0, 0, 0, + 60, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110,111,100,101, 0, 7, 0, 0, + 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, + 0, 69, 0, 0, 0, 0, 3, 0, 7, 22, 0, 0, 0,154, 64, 0, 0, 22, 64, 3, +128,129, 0, 0, 0,198, 64,192, 0,218, 0, 0, 0, 22, 0, 1,128,197,128, 0, + 0, 0, 1, 0, 0, 65,193, 0, 0,134, 65,192, 0,220, 64, 0, 2,197, 0, 1, + 0, 0, 1, 0, 0, 64, 1,128, 0,129, 1, 0, 0,220, 64, 0, 2,197, 64, 1, + 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, + 0, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0, 98,114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 84, 73, 84, 76, 69, 48, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, 98, 0, 4, + 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 82,101, 99, 0, 0, 0, 0, 0, 22, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, + 64, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, + 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, + 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 68, 0, 0, 0, + 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, 0, 0, + 0, 21, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 0, 0, 0, + 73, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0, +158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0, 84,114,101,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 72, 0, 0, 0, 72, 0, + 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 37, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 27, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 29, 0, 0, 0, 60, 0, 0, 0, + 39, 0, 0, 0, 69, 0, 0, 0, 62, 0, 0, 0, 73, 0, 0, 0, 71, 0, 0, 0, + 75, 0, 0, 0, 75, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, + 76, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 19, 0, 0, 0, 36, 0, 0, 0, 23, 0, 0, + 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 65,116,116,114,105, 98,117,116, +101, 72, 97,110,100,108,101, 0, 20, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, + +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tree_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tree_le64.loh b/iup/srclua5/loh/tree_le64.loh new file mode 100755 index 0000000..dbfc0a1 --- /dev/null +++ b/iup/srclua5/loh/tree_le64.loh @@ -0,0 +1,195 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/tree_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/tree_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116,114,101,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 5, 37, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,192, 2, 0, 73, 0,194,131, 73, 0,194,132, 73,192, + 66,133, 73,192, 66,134, 73,192,194,134, 73,192, 67,135, 73,192, 67,136, 73,192, +195,136, 73,192, 66,137, 73,192,194,137, 73, 64, 69,138, 9, 64, 0,131, 9,192, + 69,139,100, 0, 0, 0,164, 64, 0, 0, 0, 0,128, 0,135, 0, 6, 0,164,128, + 0, 0,135, 64, 6, 0,164,192, 0, 0,135,128, 6, 0,164, 0, 1, 0, 9,128, +128,141,133, 0, 7, 0,192, 0, 0, 0,156, 64, 0, 1,133, 64, 7, 0,192, 0, + 0, 0, 1,129, 7, 0,156, 64,128, 1, 30, 0,128, 0, 31, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,116,114,101,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,115,101,108,101, 99,116,105, +111,110, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110,110, 0, 4, 18, + 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105,115,101,108,101, 99,116,105,111, +110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 98,114, 97,110, 99,104, +111,112,101,110, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,110, 0, 4, + 15, 0, 0, 0, 0, 0, 0, 0, 98,114, 97,110, 99,104, 99,108,111,115,101, 95, + 99, 98, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,101,120,101, 99,117,116,101,108, +101, 97,102, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,114,101,110, 97, +109,101,110,111,100,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110, +115, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,110,111,100,101,114,101,109,111,118, +101,100, 95, 99, 98, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,114,101,110, 97,109, +101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,104,111,119,114,101, +110, 97,109,101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,114,105,103, +104,116, 99,108,105, 99,107, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +100,114, 97,103,100,114,111,112, 95, 99, 98, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,110,110,110, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97, +102,117,110, 99,115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 18, 0, 0, 0, + 0, 0, 0, 0, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, + 98, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97, +108,117,101, 82,101, 99, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, + 83,101,116, 86, 97,108,117,101, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114, +101, 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, + 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, + 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, + 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 27, 0, 0, 0, + 0, 3, 0, 7, 15, 0, 0, 0,197, 0, 0, 0, 0, 1, 0, 1,220,128, 0, 1, + 23, 64,192, 1, 22,192, 0,128,197,128, 0, 0, 0, 1, 0, 1,220,128, 0, 1, +128, 0,128, 1,197,192, 0, 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1, +220, 64, 0, 2, 30, 0,128, 0, 4, 0, 0, 0, 4, 12, 0, 0, 0, 0, 0, 0, + 0,105,117,112, 71,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, + 0, 0,105,117,112, 32,104, 97,110,100,108,101, 0, 4, 16, 0, 0, 0, 0, 0, + 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 4, 13, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, 25, 0, 0, 0, + 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, + 26, 0, 0, 0, 27, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0,110, 97,109,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0,118, 97,108,117,101, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 37, 0, 0, 0, 1, 3, + 0, 7, 69, 0, 0, 0,198, 0,192, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65,129, 0, 0,128, 1, 0, 1, 85,129,129, 2,134, 1, +192, 0,220, 64, 0, 2,198,192,192, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65, 1, 1, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +192, 0,220, 64, 0, 2,198, 64,193, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65,129, 1, 0,128, 1, 0, 1, 85,129,129, 2,134, 65, +193, 0,220, 64, 0, 2,198,192,193, 0,218, 0, 0, 0, 22,128, 1,128,197, 64, + 0, 0, 0, 1, 0, 0, 65, 1, 2, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +193, 0,220, 64, 0, 2,198, 64,194, 0,218, 0, 0, 0, 22,128, 1,128,196, 0, + 0, 0, 0, 1, 0, 0, 65,129, 2, 0,128, 1, 0, 1, 85,129,129, 2,134, 65, +194, 0,220, 64, 0, 2,198,192,194, 0,218, 0, 0, 0, 22,128, 1,128,196, 0, + 0, 0, 0, 1, 0, 0, 65, 1, 3, 0,128, 1, 0, 1, 85,129,129, 2,134,193, +194, 0,220, 64, 0, 2,198, 64,195, 0,218, 0, 0, 0, 22, 0, 1,128,197,128, + 3, 0, 0, 1, 0, 0, 64, 1, 0, 1,134, 65,195, 0,220, 64, 0, 2, 30, 0, +128, 0, 15, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 99,111,108,111,114, + 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117, +116,101, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 67, 79, 76, 79, 82, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,115,116, 97,116,101, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 83, 84, 65, 84, 69, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,116,105,116, +108,101,102,111,110,116, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0, 84, 73, 84, 76, + 69, 70, 79, 78, 84, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,109, 97,114,107,101, +100, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 77, 65, 82, 75, 69, 68, 0, 4, 6, + 0, 0, 0, 0, 0, 0, 0,105,109, 97,103,101, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 73, 77, 65, 71, 69, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,105,109, 97, +103,101,101,120,112, 97,110,100,101,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, + 73, 77, 65, 71, 69, 69, 88, 80, 65, 78, 68, 69, 68, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,117,115,101,114,105,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 84, +114,101,101, 83,101,116, 85,115,101,114, 73,100, 0, 0, 0, 0, 0, 69, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, + 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, 0, 33, 0, 0, + 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, + 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 37, 0, 0, 0, 3, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, + 68, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110,111,100,101, 0, 0, 0, 0, + 0, 68, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, + 68, 0, 0, 0, 1, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, + 83,101,116, 65,116,116,114,105, 98,117,116,101, 72, 97,110,100,108,101, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 60, 0, 0, 0, 0, 3, 0, 9, 61, + 0, 0, 0, 23, 0,192, 0, 22, 0, 0,128, 30, 0,128, 0,212, 0,128, 0, 25, +192,128,128, 22, 64, 13,128, 6,193,128, 0, 69,129, 0, 0,128, 1, 0, 2, 92, +129, 0, 1, 23,192,192, 2, 22, 0, 9,128, 70, 1, 65, 2, 90, 1, 0, 0, 22, + 64, 4,128, 69, 65, 1, 0,128, 1, 0, 0,193,129, 1, 0, 0, 2, 0, 1,213, + 1,130, 3, 6, 2, 65, 2, 92, 65, 0, 2, 69,193, 1, 0,128, 1, 0, 0,192, + 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 69, 65, 2, 0,128, 1, 0, 0,192, + 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 22, 0, 6,128, 70,129, 66, 2, 90, + 1, 0, 0, 22, 64, 5,128, 69, 65, 1, 0,128, 1, 0, 0,193,193, 2, 0, 0, + 2, 0, 1,213, 1,130, 3, 6,130, 66, 2, 92, 65, 0, 2, 69,193, 1, 0,128, + 1, 0, 0,192, 1, 0, 2, 12, 2, 66, 1, 92, 65, 0, 2, 22, 0, 2,128, 26, + 1, 0, 0, 22,128, 1,128, 69, 65, 1, 0,128, 1, 0, 0,193,193, 2, 0, 0, + 2, 0, 1,213, 1,130, 3, 0, 2, 0, 2, 92, 65, 0, 2,205, 0,194, 1, 22, +192,241,127, 30, 0,128, 0, 12, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 6, 0, 0, 0, + 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 98, +114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 83, +101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, + 0, 65, 68, 68, 66, 82, 65, 78, 67, 72, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0, + 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, 98, 0, 3, 0, + 0, 0, 0, 0, 0,240, 63, 4, 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, + 83,101,116, 86, 97,108,117,101, 82,101, 99, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0,108,101, 97,102,110, 97,109,101, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 65, + 68, 68, 76, 69, 65, 70, 0, 0, 0, 0, 0, 61, 0, 0, 0, 40, 0, 0, 0, 40, + 0, 0, 0, 40, 0, 0, 0, 41, 0, 0, 0, 42, 0, 0, 0, 42, 0, 0, 0, 43, + 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, + 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 45, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, + 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, 0, 0, 0, 47, + 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, 0, 0, 0, 48, + 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 49, 0, 0, 0, 50, + 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, 0, 0, 0, 50, + 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, 0, 0, 0, 51, + 0, 0, 0, 51, 0, 0, 0, 52, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 55, + 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, 0, 0, 0, 55, + 0, 0, 0, 55, 0, 0, 0, 58, 0, 0, 0, 58, 0, 0, 0, 60, 0, 0, 0, 5, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, + 0, 0, 60, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, 0, 0, 0, + 60, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, 60, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,111,110,116, 0, 4, 0, 0, 0, + 60, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,110,111,100,101, 0, 7, 0, 0, + 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, + 0, 69, 0, 0, 0, 0, 3, 0, 7, 22, 0, 0, 0,154, 64, 0, 0, 22, 64, 3, +128,129, 0, 0, 0,198, 64,192, 0,218, 0, 0, 0, 22, 0, 1,128,197,128, 0, + 0, 0, 1, 0, 0, 65,193, 0, 0,134, 65,192, 0,220, 64, 0, 2,197, 0, 1, + 0, 0, 1, 0, 0, 64, 1,128, 0,129, 1, 0, 0,220, 64, 0, 2,197, 64, 1, + 0, 0, 1, 0, 0, 64, 1,128, 0,128, 1, 0, 1,220, 64, 0, 2, 30, 0,128, + 0, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0, 98,114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 84, 73, 84, 76, 69, 48, 0, 4, 18, 0, 0, 0, 0, 0, 0, + 0, 84,114,101,101, 83,101,116, 78,111,100,101, 65,116,116,114,105, 98, 0, 4, + 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, + 82,101, 99, 0, 0, 0, 0, 0, 22, 0, 0, 0, 63, 0, 0, 0, 63, 0, 0, 0, + 64, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, + 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 65, 0, 0, 0, 66, 0, 0, 0, + 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, 68, 0, 0, 0, + 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 68, 0, 0, 0, 69, 0, 0, 0, + 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 21, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, 0, 0, + 0, 21, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 0, 0, 0, + 73, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0, +158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0, 84,114,101,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 72, 0, 0, 0, 72, 0, + 0, 0, 72, 0, 0, 0, 73, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 37, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, + 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, + 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, + 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, + 27, 0, 0, 0, 37, 0, 0, 0, 37, 0, 0, 0, 29, 0, 0, 0, 60, 0, 0, 0, + 39, 0, 0, 0, 69, 0, 0, 0, 62, 0, 0, 0, 73, 0, 0, 0, 71, 0, 0, 0, + 75, 0, 0, 0, 75, 0, 0, 0, 75, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, + 76, 0, 0, 0, 76, 0, 0, 0, 76, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 99,116,114,108, 0, 19, 0, 0, 0, 36, 0, 0, 0, 23, 0, 0, + 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 65,116,116,114,105, 98,117,116, +101, 72, 97,110,100,108,101, 0, 20, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, + +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/tree_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/tree_le64w.loh b/iup/srclua5/loh/tree_le64w.loh new file mode 100755 index 0000000..ebc6aae --- /dev/null +++ b/iup/srclua5/loh/tree_le64w.loh @@ -0,0 +1,112 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/tree_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/tree_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,116,114,101,101, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 33, 0, 0, 0, 10,128, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74,128, 2, 0, 73, 0,194,131, 73, 0,194,132, 73,192, + 66,133, 73,192, 66,134, 73,192,194,134, 73,192, 67,135, 73,192, 67,136, 73,192, +194,136, 73,192, 66,137, 73, 0,197,137, 9, 64, 0,131, 9,128,197,138, 9, 0, +198,139,100, 0, 0, 0, 71, 64, 6, 0,100, 64, 0, 0, 71,128, 6, 0,100,128, + 0, 0, 9, 64,128,141, 69, 0, 7, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, + 7, 0,128, 0, 0, 0,193,128, 7, 0, 92, 64,128, 1, 30, 0,128, 0, 31, 0, + 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, + 0, 0, 0, 0, 0,116,114,101,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, + 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, + 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, + 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0,115,101,108, +101, 99,116,105,111,110, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0,110, +110, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,109,117,108,116,105,115,101,108,101, + 99,116,105,111,110, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 98,114, + 97,110, 99,104,111,112,101,110, 95, 99, 98, 0, 4, 2, 0, 0, 0, 0, 0, 0, + 0,110, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0, 98,114, 97,110, 99,104, 99,108, +111,115,101, 95, 99, 98, 0, 4, 15, 0, 0, 0, 0, 0, 0, 0,101,120,101, 99, +117,116,101,108,101, 97,102, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, +114,101,110, 97,109,101,110,111,100,101, 95, 99, 98, 0, 4, 3, 0, 0, 0, 0, + 0, 0, 0,110,115, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,114,101,110, 97,109, +101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,115,104,111,119,114,101, +110, 97,109,101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0,114,105,103, +104,116, 99,108,105, 99,107, 95, 99, 98, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0, +100,114, 97,103,100,114,111,112, 95, 99, 98, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,110,110,110,110, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117, +100,101, 0, 4, 10, 0, 0, 0, 0, 0, 0, 0,105,117,112,116,114,101,101, 46, +104, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,101,120,116,114, 97,102,117,110, 99, +115, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 16, 0, 0, 0, 0, 0, 0, 0, + 84,114,101,101, 83,101,116, 86, 97,108,117,101, 82,101, 99, 0, 4, 13, 0, 0, + 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, 0, 4, 14, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110,116, + 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101, +114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117,112, + 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 40, 0, 0, 0, 0, 3, 0, 8, 45, 0, 0, 0, 23, 0,192, + 0, 22, 0, 0,128, 30, 0,128, 0,197, 64, 0, 0,198,128,192, 1, 0, 1,128, + 0,220,128, 0, 1, 25,192,128,129, 22,128, 8,128, 5, 1, 1, 0, 70,193,128, + 0, 28,129, 0, 1, 23, 64, 64, 2, 22, 64, 4,128, 6,193,128, 0, 6, 65, 65, + 2, 87, 0, 64, 2, 22,192, 5,128, 5,129, 1, 0, 64, 1, 0, 0,129,193, 1, + 0,192, 1, 0, 1,149,193, 1, 3,198,193,128, 0,198, 65,193, 3, 28, 65, 0, + 2, 5, 1, 2, 0, 64, 1, 0, 0,134,193,128, 0,204, 65, 66, 1, 28, 65, 0, + 2, 22, 64, 2,128, 6,193,128, 0, 26, 1, 0, 0, 22,128, 1,128, 5,129, 1, + 0, 64, 1, 0, 0,129,129, 2, 0,192, 1, 0, 1,149,193, 1, 3,198,193,128, + 0, 28, 65, 0, 2,205, 64,194, 1, 22,128,246,127, 30, 0,128, 0, 11, 0, 0, + 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0,116, 97, 98,108,101, 0, 4, 5, 0, + 0, 0, 0, 0, 0, 0,103,101,116,110, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,116,121,112,101, 0, 4, 11, 0, 0, 0, 0, + 0, 0, 0, 98,114, 97,110, 99,104,110, 97,109,101, 0, 4, 13, 0, 0, 0, 0, + 0, 0, 0, 83,101,116, 65,116,116,114,105, 98,117,116,101, 0, 4, 10, 0, 0, + 0, 0, 0, 0, 0, 65, 68, 68, 66, 82, 65, 78, 67, 72, 0, 4, 16, 0, 0, 0, + 0, 0, 0, 0, 84,114,101,101, 83,101,116, 86, 97,108,117,101, 82,101, 99, 0, + 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 8, 0, 0, 0, 0, 0, 0, 0, 65, 68, + 68, 76, 69, 65, 70, 0, 0, 0, 0, 0, 45, 0, 0, 0, 25, 0, 0, 0, 25, 0, + 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, 0, 0, 26, 0, + 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, + 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 29, 0, + 0, 0, 29, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, + 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 31, 0, + 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, 0, + 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 34, 0, 0, 0, 35, 0, 0, 0, 35, 0, + 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, 0, 0, 35, 0, + 0, 0, 38, 0, 0, 0, 38, 0, 0, 0, 40, 0, 0, 0, 4, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 44, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, 0, 0, 0, 44, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0,105,100, 0, 0, 0, 0, 0, 44, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 99,111,110,116, 0, 7, 0, 0, 0, 44, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 0, 0, 47, 0, 0, 0, 0, + 2, 0, 6, 14, 0, 0, 0,134, 0,192, 0, 87, 64, 64, 1, 22, 0, 1,128,133, +128, 0, 0,192, 0, 0, 0, 1,193, 0, 0, 70, 1,192, 0,156, 64, 0, 2,133, + 0, 1, 0,192, 0, 0, 0, 0, 1,128, 0, 65, 65, 1, 0,156, 64, 0, 2, 30, + 0,128, 0, 6, 0, 0, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, 98,114, 97,110, + 99,104,110, 97,109,101, 0, 0, 4, 13, 0, 0, 0, 0, 0, 0, 0, 83,101,116, + 65,116,116,114,105, 98,117,116,101, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 78, + 65, 77, 69, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0, 84,114,101,101, 83,101,116, + 86, 97,108,117,101, 82,101, 99, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 43, 0, 0, 0, 44, 0, + 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 44, 0, 0, 0, 46, 0, + 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 46, 0, 0, 0, 47, 0, + 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, + 0, 0, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,116, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, + 0, 0, 0, 51, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, + 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, + 0, 0, 0, 0, 84,114,101,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 50, 0, 0, + 0, 50, 0, 0, 0, 50, 0, 0, 0, 51, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 33, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 15, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 21, + 0, 0, 0, 40, 0, 0, 0, 24, 0, 0, 0, 47, 0, 0, 0, 42, 0, 0, 0, 51, + 0, 0, 0, 49, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 53, 0, 0, 0, 54, + 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 54, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 19, 0, 0, 0, + 32, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/tree_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/user.loh b/iup/srclua5/loh/user.loh new file mode 100755 index 0000000..79e6b0d --- /dev/null +++ b/iup/srclua5/loh/user.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/user.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/user.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,117,115,101, +114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 17, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131, 69, 0, + 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, 0, 0,193,128, + 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,117,115,101,114, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, 0, 0, 4, 9, + 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 14, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, + 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, + 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 85,115,101,114, + 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, + 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 7, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 0, 14, + 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/user.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/user_be32.loh b/iup/srclua5/loh/user_be32.loh new file mode 100755 index 0000000..953c75d --- /dev/null +++ b/iup/srclua5/loh/user_be32.loh @@ -0,0 +1,36 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/user_be32.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/user_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,117,115,101, +114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 17, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, 2, + 0, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, 64, 69, 0, 0, 0,128, 0, 2, +128,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 11, 4, 0, 0, 0, 5,110, +105, 99,107, 0, 4, 0, 0, 0, 5,117,115,101,114, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, + 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 1, 0, 4, 0, + 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 14, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32, +119,105,100,103,101,116, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 0, + 0, 0, 14, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0,133, 0,128, 0,157, 0, + 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 5, 85,115,101,114, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 5, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, 0, + 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, + 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, + 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 16, + 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/user_be32.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/user_be64.loh b/iup/srclua5/loh/user_be64.loh new file mode 100755 index 0000000..a53b5c1 --- /dev/null +++ b/iup/srclua5/loh/user_be64.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/user_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/user_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,117,115,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,117,115,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, + 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 85,115,101,114, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, + 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/user_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/user_le64.loh b/iup/srclua5/loh/user_le64.loh new file mode 100755 index 0000000..3a16a8e --- /dev/null +++ b/iup/srclua5/loh/user_le64.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/user_le64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/user_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,117,115,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,117,115,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, + 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 85,115,101,114, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, + 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/user_le64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/user_le64w.loh b/iup/srclua5/loh/user_le64w.loh new file mode 100755 index 0000000..8357384 --- /dev/null +++ b/iup/srclua5/loh/user_le64w.loh @@ -0,0 +1,39 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/user_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/user_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,117,115,101,114, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 17, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131, 69, 0, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69, 64, 2, 0,128, 0, + 0, 0,193,128, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 11, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,117,115,101,114, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, + 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, + 97, 99,107, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 3, 4, + 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, + 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 85,115,101,114, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 9, + 0, 0, 0, 14, 0, 0, 0, 12, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, + 7, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/user_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/val.loh b/iup/srclua5/loh/val.loh new file mode 100755 index 0000000..7eff35b --- /dev/null +++ b/iup/srclua5/loh/val.loh @@ -0,0 +1,41 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/val.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/val.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 9, 0, 0, 0, 64,118, 97,108, + 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 20, 0, 0, + 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, 65, +130, 74,192, 0, 0, 73, 0,194,131, 73, 0,194,132, 73, 0, 66,133, 9, 64, 0, +131,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, 0, 92, 64, 0, + 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, 1, 30, 0,128, + 0, 15, 0, 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 4, 0, 0, 0, +118, 97,108, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111, +110, 0, 4, 2, 0, 0, 0,115, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, + 99,107, 0, 4, 13, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, + 0, 4, 2, 0, 0, 0,100, 0, 4, 16, 0, 0, 0, 98,117,116,116,111,110, 95, +112,114,101,115,115, 95, 99, 98, 0, 4, 18, 0, 0, 0, 98,117,116,116,111,110, + 95,114,101,108,101, 97,115,101, 95, 99, 98, 0, 4, 14, 0, 0, 0, 99,114,101, + 97,116,101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32, +119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, + 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, 0, 0,198, 64,192, 0,157, + 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, + 86, 97,108, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, + 0, 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, + 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/val.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/val_be32.loh b/iup/srclua5/loh/val_be32.loh new file mode 100755 index 0000000..3bb4c4f --- /dev/null +++ b/iup/srclua5/loh/val_be32.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/val_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/val_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 9, 64,118, 97,108, + 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, + 21, 0, 1, 64, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, 64, + 9, 0, 0,192, 74,131,194, 0, 73,132,194, 0, 73,133, 66, 0, 73,131, 0, 64, + 9,133,195, 0, 9, 0, 0, 0,100,134,128, 64, 9, 0, 3,128, 69, 0, 0, 0, +128, 1, 0, 64, 92, 0, 3,192, 69, 0, 0, 0,128, 0, 4, 0,193, 1,128, 64, + 92, 0,128, 0, 30, 0, 0, 0, 17, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, + 0, 0, 0, 4,118, 97,108, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, + 4, 0, 0, 0, 7, 87, 73, 68, 71, 69, 84, 0, 4, 0, 0, 0, 9, 99,114,101, + 97,116,105,111,110, 0, 4, 0, 0, 0, 2,115, 0, 4, 0, 0, 0, 9, 99, 97, +108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 13,109,111,117,115,101,109,111,118, +101, 95, 99, 98, 0, 4, 0, 0, 0, 2,100, 0, 4, 0, 0, 0, 16, 98,117,116, +116,111,110, 95,112,114,101,115,115, 95, 99, 98, 0, 4, 0, 0, 0, 18, 98,117, +116,116,111,110, 95,114,101,108,101, 97,115,101, 95, 99, 98, 0, 4, 0, 0, 0, + 8,105,110, 99,108,117,100,101, 0, 4, 0, 0, 0, 9,105,117,112,118, 97,108, + 46,104, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87,105, +100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97,115, +115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, 0, + 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 2, 0, 4, 0, 0, + 0, 5, 0, 0, 0,133, 0,192, 64,198, 1, 0, 0,157, 0, 0, 0,158, 0,128, + 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 4, 86, 97,108, 0, 3, 63,240, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, + 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, + 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 97,114, +103, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 0, 12, 0, 0, + 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, + 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 11, 0, + 0, 0, 20, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/val_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/val_be64.loh b/iup/srclua5/loh/val_be64.loh new file mode 100755 index 0000000..15ecb4c --- /dev/null +++ b/iup/srclua5/loh/val_be64.loh @@ -0,0 +1,45 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/val_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/val_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 64,118, 97,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 20, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 74,192, 0, 0, 73, 0,194,131, 73, 0,194,132, 73, 0, 66, +133, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,118, 97,108, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0, + 0, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, 2, 0, + 0, 0, 0, 0, 0, 0,100, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0, 98,117,116, +116,111,110, 95,112,114,101,115,115, 95, 99, 98, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0, 98,117,116,116,111,110, 95,114,101,108,101, 97,115,101, 95, 99, 98, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 86, 97,108, 0, 3, 0, 0, 0, + 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/val_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/val_le64.loh b/iup/srclua5/loh/val_le64.loh new file mode 100755 index 0000000..5567d6f --- /dev/null +++ b/iup/srclua5/loh/val_le64.loh @@ -0,0 +1,47 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iupluacontrols51/val_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iupluacontrols51/val_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 64,118, 97,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 21, 0, 0, 0, 10, 64, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 74,192, 0, 0, 73, 0,194,131, 73, 0,194,132, 73, 0, 66, +133, 9, 64, 0,131, 9, 0,195,133,100, 0, 0, 0, 9, 64,128,134, 69,128, 3, + 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 3, 0,128, 0, 0, 0,193, 0, 4, + 0, 92, 64,128, 1, 30, 0,128, 0, 17, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, + 0, 0,110,105, 99,107, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,118, 97,108, 0, + 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, + 13, 0, 0, 0, 0, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,100, 0, 4, 16, 0, 0, 0, 0, 0, 0, + 0, 98,117,116,116,111,110, 95,112,114,101,115,115, 95, 99, 98, 0, 4, 18, 0, + 0, 0, 0, 0, 0, 0, 98,117,116,116,111,110, 95,114,101,108,101, 97,115,101, + 95, 99, 98, 0, 4, 8, 0, 0, 0, 0, 0, 0, 0,105,110, 99,108,117,100,101, + 0, 4, 9, 0, 0, 0, 0, 0, 0, 0,105,117,112,118, 97,108, 46,104, 0, 4, + 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101,110, +116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115,116, +101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, 0, + 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, 0, + 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 86, 97,108, 0, 3, 0, 0, 0, 0, + 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, + 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, + 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 21, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, + 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, 0, + 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 18, 0, 0, 0, 16, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 21, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 11, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iupluacontrols51/val_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/val_le64w.loh b/iup/srclua5/loh/val_le64w.loh new file mode 100755 index 0000000..f9c6e3f --- /dev/null +++ b/iup/srclua5/loh/val_le64w.loh @@ -0,0 +1,45 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/val_le64w.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/val_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 64,118, 97,108, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 4, 20, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0, +129, 9, 64, 65,130, 74,192, 0, 0, 73, 0,194,131, 73, 0,194,132, 73, 0, 66, +133, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,133, 69, 0, 3, 0,128, 0, 0, + 0, 92, 64, 0, 1, 69, 64, 3, 0,128, 0, 0, 0,193,128, 3, 0, 92, 64,128, + 1, 30, 0,128, 0, 15, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, + 99,107, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0,118, 97,108, 0, 4, 7, 0, 0, + 0, 0, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 7, 0, 0, 0, 0, 0, 0, + 0, 87, 73, 68, 71, 69, 84, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, + 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0,115, 0, 4, 9, 0, + 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 13, 0, 0, 0, + 0, 0, 0, 0,109,111,117,115,101,109,111,118,101, 95, 99, 98, 0, 4, 2, 0, + 0, 0, 0, 0, 0, 0,100, 0, 4, 16, 0, 0, 0, 0, 0, 0, 0, 98,117,116, +116,111,110, 95,112,114,101,115,115, 95, 99, 98, 0, 4, 18, 0, 0, 0, 0, 0, + 0, 0, 98,117,116,116,111,110, 95,114,101,108,101, 97,115,101, 95, 99, 98, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82,101,103,105,115, +116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, 0, 0, 0,105, +117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, 0, 0, 0, 0, +105,117,112, 32,119,105,100,103,101,116, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, 0, 0, 2, 0, 4, 5, 0, 0, 0,133, + 0, 0, 0,198, 64,192, 0,157, 0, 0, 1,158, 0, 0, 0, 30, 0,128, 0, 2, + 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 86, 97,108, 0, 3, 0, 0, 0, + 0, 0, 0,240, 63, 0, 0, 0, 0, 5, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, + 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, + 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0, 0, 10, 0, 0, 0, 11, + 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, + 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, + 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99, +116,114,108, 0, 10, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/val_le64w.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/vbox.loh b/iup/srclua5/loh/vbox.loh new file mode 100755 index 0000000..efc2bc0 --- /dev/null +++ b/iup/srclua5/loh/vbox.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/vbox.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/vbox.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,118, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 19, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131,100, 64, + 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,128, + 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0,128, 0, 12, 0, + 0, 0, 4, 5, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0,118, 98,111, +120, 0, 4, 7, 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, + 0, 0, 0, 97,112,112,101,110,100, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, + 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105, +100,103,101,116, 0, 2, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, + 0, 0, 2, 0, 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, + 0,156, 64,128, 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, +101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 17, 0, 0, 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, + 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, + 0, 0, 86, 98,111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 97,114,103, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, 0, + 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, + 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, + 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, + 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/vbox.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/vbox_be32.loh b/iup/srclua5/loh/vbox_be32.loh new file mode 100755 index 0000000..44e3024 --- /dev/null +++ b/iup/srclua5/loh/vbox_be32.loh @@ -0,0 +1,43 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/vbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/vbox_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,118, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 19, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, 0, + 64,100,132, 0, 64, 9, 0, 2, 64, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2, +128, 69, 0, 0, 0,128, 0, 2,192,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, + 0, 12, 4, 0, 0, 0, 5,110,105, 99,107, 0, 4, 0, 0, 0, 5,118, 98,111, +120, 0, 4, 0, 0, 0, 7,112, 97,114,101,110,116, 0, 4, 0, 0, 0, 4, 66, + 79, 88, 0, 4, 0, 0, 0, 9, 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, + 0, 2, 45, 0, 4, 0, 0, 0, 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, + 0, 0, 7, 97,112,112,101,110,100, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103, +105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, + 83,101,116, 67,108, 97,115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105, +100,103,101,116, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 13, 0, 2, 0, 5, 0, 0, 0, 5, 0, 0, 0,133, 0, 0, 0,192, 0,128, 1, + 0, 1,128, 64,156, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, 0, 7, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, + 7,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, +101,108,101,109, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 2, 0, 3, 0, 0, 0, 4, 0, 0, 0, +133, 0,128, 0,157, 0, 0, 0,158, 0,128, 0, 30, 0, 0, 0, 1, 4, 0, 0, + 0, 5, 86, 98,111,120, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, + 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 97,114,103, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, + 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, 0, + 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, + 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, + 5, 99,116,114,108, 0, 0, 0, 0, 7, 0, 0, 0, 18, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/vbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/vbox_be64.loh b/iup/srclua5/loh/vbox_be64.loh new file mode 100755 index 0000000..92962ee --- /dev/null +++ b/iup/srclua5/loh/vbox_be64.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/vbox_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/vbox_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,118, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0, +128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,118, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, +112,112,101,110,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, + 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, + 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 86, 98, +111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/vbox_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/vbox_le64.loh b/iup/srclua5/loh/vbox_le64.loh new file mode 100755 index 0000000..b10314c --- /dev/null +++ b/iup/srclua5/loh/vbox_le64.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/vbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/vbox_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,118, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0, +128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,118, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, +112,112,101,110,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, + 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, + 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 86, 98, +111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/vbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/vbox_le64w.loh b/iup/srclua5/loh/vbox_le64w.loh new file mode 100755 index 0000000..c3a3f70 --- /dev/null +++ b/iup/srclua5/loh/vbox_le64w.loh @@ -0,0 +1,48 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/vbox_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/vbox_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,118, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 19, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132, 69, 64, 2, 0,128, 0, 0, 0, 92, 64, + 0, 1, 69,128, 2, 0,128, 0, 0, 0,193,192, 2, 0, 92, 64,128, 1, 30, 0, +128, 0, 12, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, + 4, 5, 0, 0, 0, 0, 0, 0, 0,118, 98,111,120, 0, 4, 7, 0, 0, 0, 0, + 0, 0, 0,112, 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, + 79, 88, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, + 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97, +112,112,101,110,100, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116, +101, 69,108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117, +112, 82,101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, + 0, 0, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, + 0, 0, 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 13, 0, 0, 0, 0, 2, 0, + 5, 5, 0, 0, 0,133, 0, 0, 0,192, 0, 0, 0, 0, 1,128, 0,156, 64,128, + 1, 30, 0,128, 0, 1, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112, +112,101,110,100, 0, 0, 0, 0, 0, 5, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, + 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 0, 0, 2, 0, 3, 4, 0, 0, 0,133, 0, 0, 0,157, 0,128, 0,158, 0, 0, + 0, 30, 0,128, 0, 1, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 86, 98, +111,120, 0, 0, 0, 0, 0, 4, 0, 0, 0, 16, 0, 0, 0, 16, 0, 0, 0, 16, + 0, 0, 0, 17, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99, +108, 97,115,115, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 97,114,103, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 8, 0, 0, 0, 13, 0, 0, 0, 11, 0, 0, 0, 17, 0, 0, + 0, 15, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/vbox_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/zbox.loh b/iup/srclua5/loh/zbox.loh new file mode 100755 index 0000000..ad51b1c --- /dev/null +++ b/iup/srclua5/loh/zbox.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/zbox.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/zbox.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 4, 4, 8, 0, 10, 0, 0, 0, 64,122, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 22, 0, + 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, 0,129, 9, 64, + 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64,128,131,100, 64, + 0, 0, 9, 64, 0,132,100,128, 0, 0, 0, 0, 0, 0, 9, 64,128,132, 69,128, + 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, 0, 0,193, 0, + 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, 0, 0, 0,110, +105, 99,107, 0, 4, 5, 0, 0, 0,122, 98,111,120, 0, 4, 7, 0, 0, 0,112, + 97,114,101,110,116, 0, 4, 4, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 45, 0, 4, 9, 0, 0, + 0, 99, 97,108,108, 98, 97, 99,107, 0, 4, 7, 0, 0, 0, 97,112,112,101,110, +100, 0, 4, 17, 0, 0, 0, 83,101,116, 67,104,105,108,100,114,101,110, 78, 97, +109,101,115, 0, 4, 14, 0, 0, 0, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 18, 0, 0, 0,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 12, 0, 0, 0,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 11, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 5, 8, + 0, 0, 0,133, 0, 0, 0,192, 0,128, 0,156, 64, 0, 1,133, 64, 0, 0,192, + 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, + 16, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, + 4, 7, 0, 0, 0, 65,112,112,101,110,100, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 7, 0, 0, 0, 5, 0, 0, 0,101, +108,101,109, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 24, 0, 0, 0, 0, 1, 0, 4, 12, 0, 0, 0, 26, 0, 0, 0, + 22, 0, 2,128, 65, 0, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22, 0, 1,128, +133, 64, 0, 0,198, 64, 0, 0,156, 64, 0, 1, 76, 0,192, 0, 22,192,253,127, + 30, 0,128, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 16, 0, + 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 0, 0, + 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, 0, 19, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, 0, 4, 0, + 0, 0,111, 98,106, 0, 0, 0, 0, 0, 11, 0, 0, 0, 2, 0, 0, 0,105, 0, + 3, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 29, 0, 0, 0, 1, 2, 0, 4, 8, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1, +192, 0,128, 0,156, 64, 0, 1,133, 64, 0, 0,157, 0,128, 0,158, 0, 0, 0, + 30, 0,128, 0, 2, 0, 0, 0, 4, 17, 0, 0, 0, 83,101,116, 67,104,105,108, +100,114,101,110, 78, 97,109,101,115, 0, 4, 5, 0, 0, 0, 90, 98,111,120, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, + 2, 0, 0, 0, 6, 0, 0, 0, 99,108, 97,115,115, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 4, 0, 0, 0, 97,114,103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, + 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, + 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, + 0, 0, 0, 14, 0, 0, 0, 11, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 29, + 0, 0, 0, 29, 0, 0, 0, 26, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, + 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/zbox.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/zbox_be32.loh b/iup/srclua5/loh/zbox_be32.loh new file mode 100755 index 0000000..9c39f71 --- /dev/null +++ b/iup/srclua5/loh/zbox_be32.loh @@ -0,0 +1,61 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/zbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/zbox_be32.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 0, 4, 4, 4, 8, 0, 0, 0, 0, 10, 64,122, 98,111, +120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, + 0, 22, 0, 1, 0, 10,128, 64, 64, 9, 0, 0,192, 69,129, 0, 64, 9,130, 65, + 64, 9, 0, 0, 0, 74,131, 0, 64, 9, 0, 0, 0,100,131,128, 64, 9, 0, 0, + 64,100,132, 0, 64, 9, 0, 0,128,100, 0, 0, 0, 0,132,128, 64, 9, 0, 2, +128, 69, 0, 0, 0,128, 1, 0, 64, 92, 0, 2,192, 69, 0, 0, 0,128, 0, 3, + 0,193, 1,128, 64, 92, 0,128, 0, 30, 0, 0, 0, 13, 4, 0, 0, 0, 5,110, +105, 99,107, 0, 4, 0, 0, 0, 5,122, 98,111,120, 0, 4, 0, 0, 0, 7,112, + 97,114,101,110,116, 0, 4, 0, 0, 0, 4, 66, 79, 88, 0, 4, 0, 0, 0, 9, + 99,114,101, 97,116,105,111,110, 0, 4, 0, 0, 0, 2, 45, 0, 4, 0, 0, 0, + 9, 99, 97,108,108, 98, 97, 99,107, 0, 4, 0, 0, 0, 7, 97,112,112,101,110, +100, 0, 4, 0, 0, 0, 17, 83,101,116, 67,104,105,108,100,114,101,110, 78, 97, +109,101,115, 0, 4, 0, 0, 0, 14, 99,114,101, 97,116,101, 69,108,101,109,101, +110,116, 0, 4, 0, 0, 0, 18,105,117,112, 82,101,103,105,115,116,101,114, 87, +105,100,103,101,116, 0, 4, 0, 0, 0, 12,105,117,112, 83,101,116, 67,108, 97, +115,115, 0, 4, 0, 0, 0, 11,105,117,112, 32,119,105,100,103,101,116, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 14, 0, 2, 0, 5, 0, + 0, 0, 8, 0, 0, 0,133, 0,128, 0,192, 1, 0, 64,156, 0, 0, 64,133, 0, + 0, 0,192, 0,128, 1, 0, 1,128, 64,156, 0,128, 0, 30, 0, 0, 0, 2, 4, + 0, 0, 0, 16,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, + 4, 0, 0, 0, 7, 65,112,112,101,110,100, 0, 0, 0, 0, 0, 0, 0, 0, 8, + 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 0, 13, + 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, 2, 0, 0, 0, 7, +104, 97,110,100,108,101, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 5,101, +108,101,109, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 24, 0, 1, 0, 4, 0, 0, 0, 12, 0, 0, 0, 26, +128, 2, 0, 22, 0, 0, 0, 65, 0, 0, 64,134, 0, 0, 0,154,128, 1, 0, 22, + 0, 0, 64,133, 0, 0, 64,198, 1, 0, 64,156, 0,192, 0, 76,127,253,192, 22, + 0,128, 0, 30, 0, 0, 0, 2, 3, 63,240, 0, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 16,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109,101, 0, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, 0, + 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, + 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 24, 0, 0, 0, 2, 0, 0, + 0, 4,111, 98,106, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 2,105, 0, + 0, 0, 0, 3, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, + 0, 0, 0, 29, 1, 2, 0, 4, 0, 0, 0, 8, 0, 0, 0,132, 1, 64, 0,134, + 0,128, 0,192, 1, 0, 64,156, 0, 0, 64,133, 0,128, 0,157, 0, 0, 0,158, + 0,128, 0, 30, 0, 0, 0, 2, 4, 0, 0, 0, 17, 83,101,116, 67,104,105,108, +100,114,101,110, 78, 97,109,101,115, 0, 4, 0, 0, 0, 5, 90, 98,111,120, 0, + 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, 27, + 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 29, + 0, 0, 0, 2, 0, 0, 0, 6, 99,108, 97,115,115, 0, 0, 0, 0, 0, 0, 0, + 0, 7, 0, 0, 0, 4, 97,114,103, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, + 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 22, 0, 0, 0, 4, 0, + 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, + 0, 0, 8, 0, 0, 0, 14, 0, 0, 0, 11, 0, 0, 0, 24, 0, 0, 0, 16, 0, + 0, 0, 29, 0, 0, 0, 29, 0, 0, 0, 26, 0, 0, 0, 31, 0, 0, 0, 31, 0, + 0, 0, 31, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, + 0, 0, 32, 0, 0, 0, 1, 0, 0, 0, 5, 99,116,114,108, 0, 0, 0, 0, 7, + 0, 0, 0, 21, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/zbox_be32.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/zbox_be64.loh b/iup/srclua5/loh/zbox_be64.loh new file mode 100755 index 0000000..df7ee45 --- /dev/null +++ b/iup/srclua5/loh/zbox_be64.loh @@ -0,0 +1,67 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/zbox_be64.lo")==0) lua_call(L, 0, 0); +*/ +/* ../obj/iuplua51/zbox_be64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,122, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132,100,128, 0, 0, 0, 0, 0, 0, 9, 64, +128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, + 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,122, 98,111,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97,112,112,101,110,100, 0, 4, 17, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 67,104,105,108,100,114,101,110, 78, 97, +109,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 5, 8, + 0, 0, 0,133, 0, 0, 0,192, 0,128, 0,156, 64, 0, 1,133, 64, 0, 0,192, + 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, + 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, + 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 24, 0, 0, 0, 0, 1, 0, 4, 12, 0, 0, 0, 26, 0, 0, 0, + 22, 0, 2,128, 65, 0, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22, 0, 1,128, +133, 64, 0, 0,198, 64, 0, 0,156, 64, 0, 1, 76, 0,192, 0, 22,192,253,127, + 30, 0,128, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 16, 0, + 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109, +101, 0, 0, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 24, 0, 0, 0, 2, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,111, 98,106, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 3, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 29, 0, 0, 0, + 1, 2, 0, 4, 8, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1,192, 0,128, 0, +156, 64, 0, 1,133, 64, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 17, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 67,104,105,108, +100,114,101,110, 78, 97,109,101,115, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 90, + 98,111,120, 0, 0, 0, 0, 0, 8, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, + 29, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114, +103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 14, + 0, 0, 0, 11, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 26, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/zbox_be64.lo")==0) lua_call(L, 0, 0); +} diff --git a/iup/srclua5/loh/zbox_le64.loh b/iup/srclua5/loh/zbox_le64.loh new file mode 100755 index 0000000..138b8c7 --- /dev/null +++ b/iup/srclua5/loh/zbox_le64.loh @@ -0,0 +1,67 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/zbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/zbox_le64.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,122, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132,100,128, 0, 0, 0, 0, 0, 0, 9, 64, +128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, + 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,122, 98,111,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97,112,112,101,110,100, 0, 4, 17, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 67,104,105,108,100,114,101,110, 78, 97, +109,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 5, 8, + 0, 0, 0,133, 0, 0, 0,192, 0,128, 0,156, 64, 0, 1,133, 64, 0, 0,192, + 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, + 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, + 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 24, 0, 0, 0, 0, 1, 0, 4, 12, 0, 0, 0, 26, 0, 0, 0, + 22, 0, 2,128, 65, 0, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22, 0, 1,128, +133, 64, 0, 0,198, 64, 0, 0,156, 64, 0, 1, 76, 0,192, 0, 22,192,253,127, + 30, 0,128, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 16, 0, + 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109, +101, 0, 0, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 24, 0, 0, 0, 2, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,111, 98,106, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 3, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 29, 0, 0, 0, + 1, 2, 0, 4, 8, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1,192, 0,128, 0, +156, 64, 0, 1,133, 64, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 17, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 67,104,105,108, +100,114,101,110, 78, 97,109,101,115, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 90, + 98,111,120, 0, 0, 0, 0, 0, 8, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, + 29, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114, +103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 14, + 0, 0, 0, 11, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 26, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/zbox_le64.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/loh/zbox_le64w.loh b/iup/srclua5/loh/zbox_le64w.loh new file mode 100755 index 0000000..0a80b36 --- /dev/null +++ b/iup/srclua5/loh/zbox_le64w.loh @@ -0,0 +1,67 @@ +/* code automatically generated by bin2c -- DO NOT EDIT */ +{ +/* #include'ing this file in a C program is equivalent to calling + if (luaL_loadfile(L,"../obj/iuplua51/zbox_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +*/ +/* ../obj/iuplua51/zbox_le64w.lo */ +static const unsigned char B1[]={ + 27, 76,117, 97, 81, 0, 1, 4, 8, 4, 8, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 64,122, 98,111,120, 46,108,117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 4, 22, 0, 0, 0, 10, 0, 1, 0, 9, 64, 64,128, 69,192, 0, 0, 9, 64, + 0,129, 9, 64, 65,130, 74, 0, 0, 0, 9, 64, 0,131,100, 0, 0, 0, 9, 64, +128,131,100, 64, 0, 0, 9, 64, 0,132,100,128, 0, 0, 0, 0, 0, 0, 9, 64, +128,132, 69,128, 2, 0,128, 0, 0, 0, 92, 64, 0, 1, 69,192, 2, 0,128, 0, + 0, 0,193, 0, 3, 0, 92, 64,128, 1, 30, 0,128, 0, 13, 0, 0, 0, 4, 5, + 0, 0, 0, 0, 0, 0, 0,110,105, 99,107, 0, 4, 5, 0, 0, 0, 0, 0, 0, + 0,122, 98,111,120, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0,112, 97,114,101,110, +116, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 66, 79, 88, 0, 4, 9, 0, 0, 0, + 0, 0, 0, 0, 99,114,101, 97,116,105,111,110, 0, 4, 2, 0, 0, 0, 0, 0, + 0, 0, 45, 0, 4, 9, 0, 0, 0, 0, 0, 0, 0, 99, 97,108,108, 98, 97, 99, +107, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 97,112,112,101,110,100, 0, 4, 17, + 0, 0, 0, 0, 0, 0, 0, 83,101,116, 67,104,105,108,100,114,101,110, 78, 97, +109,101,115, 0, 4, 14, 0, 0, 0, 0, 0, 0, 0, 99,114,101, 97,116,101, 69, +108,101,109,101,110,116, 0, 4, 18, 0, 0, 0, 0, 0, 0, 0,105,117,112, 82, +101,103,105,115,116,101,114, 87,105,100,103,101,116, 0, 4, 12, 0, 0, 0, 0, + 0, 0, 0,105,117,112, 83,101,116, 67,108, 97,115,115, 0, 4, 11, 0, 0, 0, + 0, 0, 0, 0,105,117,112, 32,119,105,100,103,101,116, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 5, 8, + 0, 0, 0,133, 0, 0, 0,192, 0,128, 0,156, 64, 0, 1,133, 64, 0, 0,192, + 0, 0, 0, 0, 1,128, 0,156, 64,128, 1, 30, 0,128, 0, 2, 0, 0, 0, 4, + 16, 0, 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, + 97,109,101, 0, 4, 7, 0, 0, 0, 0, 0, 0, 0, 65,112,112,101,110,100, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, 12, 0, 0, 0, + 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, + 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0,104, 97,110,100,108,101, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0,101,108,101,109, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 24, 0, 0, 0, 0, 1, 0, 4, 12, 0, 0, 0, 26, 0, 0, 0, + 22, 0, 2,128, 65, 0, 0, 0,134, 64, 0, 0,154, 0, 0, 0, 22, 0, 1,128, +133, 64, 0, 0,198, 64, 0, 0,156, 64, 0, 1, 76, 0,192, 0, 22,192,253,127, + 30, 0,128, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,240, 63, 4, 16, 0, + 0, 0, 0, 0, 0, 0,105,104, 97,110,100,108,101, 95,115,101,116,110, 97,109, +101, 0, 0, 0, 0, 0, 12, 0, 0, 0, 17, 0, 0, 0, 17, 0, 0, 0, 18, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 19, 0, 0, 0, 20, 0, 0, 0, 20, 0, + 0, 0, 20, 0, 0, 0, 21, 0, 0, 0, 21, 0, 0, 0, 24, 0, 0, 0, 2, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0,111, 98,106, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0,105, 0, 3, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 29, 0, 0, 0, + 1, 2, 0, 4, 8, 0, 0, 0,132, 0, 0, 0,134, 0, 64, 1,192, 0,128, 0, +156, 64, 0, 1,133, 64, 0, 0,157, 0,128, 0,158, 0, 0, 0, 30, 0,128, 0, + 2, 0, 0, 0, 4, 17, 0, 0, 0, 0, 0, 0, 0, 83,101,116, 67,104,105,108, +100,114,101,110, 78, 97,109,101,115, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 90, + 98,111,120, 0, 0, 0, 0, 0, 8, 0, 0, 0, 27, 0, 0, 0, 27, 0, 0, 0, + 27, 0, 0, 0, 27, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, 28, 0, 0, 0, + 29, 0, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 99,108, 97,115, +115, 0, 0, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 97,114, +103, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 99,116,114,108, 0, 22, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 6, + 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 14, + 0, 0, 0, 11, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 29, 0, 0, 0, 29, + 0, 0, 0, 26, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 31, 0, 0, 0, 32, + 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 1, + 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 99,116,114,108, 0, 7, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, +}; + + if (luaL_loadbuffer(L,(const char*)B1,sizeof(B1),"../obj/iuplua51/zbox_le64w.lo")==0) lua_pcall(L, 0, 0, 0); +} diff --git a/iup/srclua5/make_uname b/iup/srclua5/make_uname new file mode 100755 index 0000000..4e01bd9 --- /dev/null +++ b/iup/srclua5/make_uname @@ -0,0 +1,9 @@ +#This builds all the libraries of the folder for 1 uname + +tecmake $1 $2 $3 $4 $5 $6 $7 $8 +tecmake $1 MF=iupcd $2 $3 $4 $5 $6 $7 $8 +tecmake $1 MF=iupcontrols $2 $3 $4 $5 $6 $7 $8 +tecmake $1 MF=iup_pplot $2 $3 $4 $5 $6 $7 $8 +tecmake $1 MF=iupgl $2 $3 $4 $5 $6 $7 $8 +tecmake $1 MF=iupim $2 $3 $4 $5 $6 $7 $8 +tecmake $1 MF=iupimglib $2 $3 $4 $5 $6 $7 $8 diff --git a/iup/srclua5/make_uname.bat b/iup/srclua5/make_uname.bat new file mode 100755 index 0000000..ecf9de1 --- /dev/null +++ b/iup/srclua5/make_uname.bat @@ -0,0 +1,11 @@ +@echo off +REM This builds all the libraries of the folder for 1 uname + +call tecmake %1 %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iupcd" %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iupcontrols" %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iup_pplot" %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iupgl" %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iupim" %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iupimglib" %2 %3 %4 %5 %6 %7 %8 +call tecmake %1 "MF=iupole" %2 %3 %4 %5 %6 %7 %8 diff --git a/iup/srclua5/matrix.lua b/iup/srclua5/matrix.lua new file mode 100755 index 0000000..81aa732 --- /dev/null +++ b/iup/srclua5/matrix.lua @@ -0,0 +1,46 @@ +------------------------------------------------------------------------------ +-- Matrix class +------------------------------------------------------------------------------ +local ctrl = { + nick = "matrix", + parent = WIDGET, + creation = "-", + callback = { + action_cb = "nnnns", + click_cb = "nns", + release_cb = "nns", + drop_cb = "inn", + dropcheck_cb = "nn", + draw_cb = "nnnnnnn", -- fake definitions to be replaced by matrixfuncs module + dropselect_cb = "nnisnn", + edition_cb = "nnnn", + enteritem_cb = "nn", + leaveitem_cb = "nn", + mousemove_cb = "nn", + scrolltop_cb = "nn", + fgcolor_cb = "nn", -- fake definitions to be replaced by matrixfuncs module + bgcolor_cb = "nn", + font_cb = {"nn", ret = "s"}, -- ret is return type + value_cb = {"nn", ret = "s"}, -- ret is return type + value_edit_cb = "nns", + mark_cb = "nn", + markedit_cb = "nnn", + }, + include = "iupcontrols.h", + extrafuncs = 1, +} + +function ctrl.createElement(class, arg) + return Matrix(arg.action) +end + +function ctrl.setcell(handle, l, c, val) + SetAttribute(handle,l..":"..c,val) +end + +function ctrl.getcell(handle, l, c) + return GetAttribute(handle,l..":"..c) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/menu.lua b/iup/srclua5/menu.lua new file mode 100755 index 0000000..89cd241 --- /dev/null +++ b/iup/srclua5/menu.lua @@ -0,0 +1,55 @@ +------------------------------------------------------------------------------ +-- Menu class +------------------------------------------------------------------------------ +local ctrl = { + nick = "menu", + parent = BOX, + creation = "-", + callback = { + open_cb = "", + menuclose_cb = "", + } +} + +function ctrl.popup(handle, x, y) + Popup(handle, x, y) +end + +function ctrl.append(handle, elem) + Append(handle, elem) +end + +function ctrl.createElement(class, arg) + local n = #arg + for i=1,n do + if type(arg[i]) == "table" then + itemarg = {} + for u,v in pairs(arg[i]) do + if type(u) ~= "number" then + itemarg[u] = v + end + end + if type(arg[i][1]) == "string" and (type(arg[i][2]) == "function" or type(arg[i][2]) == "string") then + itemarg.title = arg[i][1] + itemarg.action = arg[i][2] + arg[i] = item(itemarg) + elseif type(arg[i][1]) == "string" and type(arg[i][2]) == "userdata" then + itemarg[1] = arg[i][2] + itemarg.title = arg[i][1] + arg[i] = submenu(itemarg) + end + end + end + return Menu() +end + +function ctrl.showxy(handle, x, y) + return ShowXY(handle, x, y) +end + +function ctrl.destroy(handle) + return Destroy(handle) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/messagedlg.lua b/iup/srclua5/messagedlg.lua new file mode 100755 index 0000000..e81eede --- /dev/null +++ b/iup/srclua5/messagedlg.lua @@ -0,0 +1,26 @@ +------------------------------------------------------------------------------ +-- MessageDlg class +------------------------------------------------------------------------------ +local ctrl = { + nick = "messagedlg", + parent = WIDGET, + creation = "", + funcname = "MessageDlg", + callback = {} +} + +function ctrl.popup(handle, x, y) + Popup(handle,x,y) +end + +function ctrl.destroy(handle) + return Destroy(handle) +end + +function ctrl.createElement(class, arg) + return MessageDlg() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") + diff --git a/iup/srclua5/multiline.lua b/iup/srclua5/multiline.lua new file mode 100755 index 0000000..9ae766e --- /dev/null +++ b/iup/srclua5/multiline.lua @@ -0,0 +1,19 @@ +------------------------------------------------------------------------------ +-- Multiline class +------------------------------------------------------------------------------ +local ctrl = { + nick = "multiline", + parent = WIDGET, + creation = "-", + callback = { + action = "ns", + }, + funcname = "MultiLine", +} + +function ctrl.createElement(class, arg) + return MultiLine() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/normalizer.lua b/iup/srclua5/normalizer.lua new file mode 100755 index 0000000..201aab0 --- /dev/null +++ b/iup/srclua5/normalizer.lua @@ -0,0 +1,28 @@ + +------------------------------------------------------------------------------ +-- Normalizer class +------------------------------------------------------------------------------ +local ctrl = { + nick = "normalizer", + parent = WIDGET, + creation = "-", + callback = {} +} + +function ctrl.setAttributes(object, arg) + local handle = rawget(object, "handle") + local n = #arg + for i = 1, n do + if iupGetClass(arg[i]) == "iup handle" then + object.addcontrol = arg[i] + end + end + WIDGET.setAttributes(object, arg) +end + +function ctrl.createElement(class, arg) + return Normalizer() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/olecontrol.lua b/iup/srclua5/olecontrol.lua new file mode 100755 index 0000000..902977b --- /dev/null +++ b/iup/srclua5/olecontrol.lua @@ -0,0 +1,54 @@ +------------------------------------------------------------------------------ +-- OleControl class +------------------------------------------------------------------------------ +local ctrl = { + nick = "olecontrol", + parent = WIDGET, + creation = "s", + funcname = "OleControl", + callback = {}, + include = "iupole.h", + extracode = [[ +int iupolelua_open(lua_State* L) +{ + if (iuplua_opencall_internal(L)) + IupOleControlOpen(); + + iuplua_changeEnv(L); + iupolecontrollua_open(L); + iuplua_returnEnv(L); + return 0; +} + +/* obligatory to use require"iupluaole" */ +int luaopen_iupluaole(lua_State* L) +{ + return iupolelua_open(L); +} + +/* obligatory to use require"iupluaole51" */ +int luaopen_iupluaole51(lua_State* L) +{ + return iupolelua_open(L); +} + +]] +} + +function ctrl.createElement(class, arg) + return OleControl(arg[1]) +end + +function ctrl.CreateLuaCOM(handle) + -- if luacom is loaded, use it to access methods and properties + -- of the control + if luacom then + local punk = handle.iunknown + if punk then + handle.com = luacom.CreateLuaCOM(luacom.ImportIUnknown(punk)) + end + end +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/pplot.lua b/iup/srclua5/pplot.lua new file mode 100755 index 0000000..5d6a2f4 --- /dev/null +++ b/iup/srclua5/pplot.lua @@ -0,0 +1,31 @@ +------------------------------------------------------------------------------ +-- PPlot class +------------------------------------------------------------------------------ +local ctrl = { + nick = "pplot", + parent = WIDGET, + creation = "", + funcname = "PPlot", + callback = { + select_cb = "nnffn", + selectbegin_cb = "", + selectend_cb = "", + predraw_cb = "n", -- fake definitions to be replaced by pplotfuncs module + postdraw_cb = "n", -- fake definitions to be replaced by pplotfuncs module + edit_cb = "nnffff", -- fake definitions to be replaced by pplotfuncs module + editbegin_cb = "", + editend_cb = "", + delete_cb = "nnff", + deletebegin_cb = "", + deleteend_cb = "", + }, + include = "iup_pplot.h", + extrafuncs = 1, +} + +function ctrl.createElement(class, arg) + return PPlot(arg.action) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/progressbar.lua b/iup/srclua5/progressbar.lua new file mode 100755 index 0000000..16b4a09 --- /dev/null +++ b/iup/srclua5/progressbar.lua @@ -0,0 +1,17 @@ +------------------------------------------------------------------------------ +-- ProgressBar class +------------------------------------------------------------------------------ +local ctrl = { + nick = "progressbar", + parent = WIDGET, + creation = "", + funcname = "ProgressBar", + callback = {} +} + +function ctrl.createElement(class, arg) + return ProgressBar() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/radio.lua b/iup/srclua5/radio.lua new file mode 100755 index 0000000..1cdd3a6 --- /dev/null +++ b/iup/srclua5/radio.lua @@ -0,0 +1,33 @@ +------------------------------------------------------------------------------ +-- Radio class +------------------------------------------------------------------------------ +local ctrl = { + nick = "radio", + parent = WIDGET, + creation = "i", + callback = {} +} + +function ctrl.CreateChildrenNames(obj) + if obj then + if obj.parent.parent == BOX then + local i = 1 + while obj[i] do + ctrl.CreateChildrenNames (obj[i]) + i = i+1 + end + elseif obj.parent == IUPFRAME then + ctrl.CreateChildrenNames (obj[1]) + else + ihandle_setname(obj) + end + end +end + +function ctrl.createElement(class, arg) + ctrl.CreateChildrenNames(arg[1]) + return Radio(arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/sbox.lua b/iup/srclua5/sbox.lua new file mode 100755 index 0000000..9ee63ba --- /dev/null +++ b/iup/srclua5/sbox.lua @@ -0,0 +1,16 @@ +------------------------------------------------------------------------------ +-- Sbox class +------------------------------------------------------------------------------ +local ctrl = { + nick = "sbox", + parent = WIDGET, + creation = "i", + callback = {} +} + +function ctrl.createElement(class, arg) + return Sbox(arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/separator.lua b/iup/srclua5/separator.lua new file mode 100755 index 0000000..1841d6a --- /dev/null +++ b/iup/srclua5/separator.lua @@ -0,0 +1,16 @@ +------------------------------------------------------------------------------ +-- Separator class +------------------------------------------------------------------------------ +local ctrl = { + nick = "separator", + parent = WIDGET, + creation = "", + callback = {} +} + +function ctrl.createElement(class, arg) + return Separator() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/spin.lua b/iup/srclua5/spin.lua new file mode 100755 index 0000000..b6e2044 --- /dev/null +++ b/iup/srclua5/spin.lua @@ -0,0 +1,18 @@ +------------------------------------------------------------------------------ +-- Spin class +------------------------------------------------------------------------------ +local ctrl = { + nick = "spin", + parent = WIDGET, + creation = "", + callback = { + spin_cb = "n", + }, +} + +function ctrl.createElement(class, arg) + return Spin(arg.action) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/spinbox.lua b/iup/srclua5/spinbox.lua new file mode 100755 index 0000000..c671e6a --- /dev/null +++ b/iup/srclua5/spinbox.lua @@ -0,0 +1,18 @@ +------------------------------------------------------------------------------ +-- SpinBox class +------------------------------------------------------------------------------ +local ctrl = { + nick = "spinbox", + parent = WIDGET, + creation = "i", + callback = { + spin_cb = "n", + }, +} + +function ctrl.createElement(class, arg) + return Spinbox(arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/submenu.lua b/iup/srclua5/submenu.lua new file mode 100755 index 0000000..5dc76d4 --- /dev/null +++ b/iup/srclua5/submenu.lua @@ -0,0 +1,19 @@ +------------------------------------------------------------------------------ +-- Submenu class +------------------------------------------------------------------------------ +local ctrl = { + nick = "submenu", + parent = WIDGET, + creation = "Si", + callback = { +-- open_cb = "", -- already registered by the menu +-- menuclose_cb = "", -- already registered by the menu + } +} + +function ctrl.createElement(class, arg) + return Submenu(arg.title, arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/tabs.lua b/iup/srclua5/tabs.lua new file mode 100755 index 0000000..3dc69bb --- /dev/null +++ b/iup/srclua5/tabs.lua @@ -0,0 +1,31 @@ +------------------------------------------------------------------------------ +-- Tabs class +------------------------------------------------------------------------------ +local ctrl = { + nick = "tabs", + parent = WIDGET, + creation = "v", + callback = { + tabchange_cb = "ii", + }, + funcname = "Tabsv", + createfunc = [[ +static int Tabsv(lua_State *L) +{ + Ihandle **hlist = iuplua_checkihandle_array(L, 1); + Ihandle *h = IupTabsv(hlist); + iuplua_plugstate(L, h); + iuplua_pushihandle_raw(L, h); + free(hlist); + return 1; +} + +]], +} + +function ctrl.createElement(class, arg) + return Tabsv(arg) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/text.lua b/iup/srclua5/text.lua new file mode 100755 index 0000000..e01dab5 --- /dev/null +++ b/iup/srclua5/text.lua @@ -0,0 +1,20 @@ +------------------------------------------------------------------------------ +-- Text class +------------------------------------------------------------------------------ +local ctrl = { + nick = "text", + parent = WIDGET, + creation = "-", + callback = { + action = "ns", + caret_cb = "nnn", + valuechanged_cb = "", -- used by many other controls + } +} + +function ctrl.createElement(class, arg) + return Text() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/timer.lua b/iup/srclua5/timer.lua new file mode 100755 index 0000000..53cda70 --- /dev/null +++ b/iup/srclua5/timer.lua @@ -0,0 +1,18 @@ +------------------------------------------------------------------------------ +-- Timer class +------------------------------------------------------------------------------ +local ctrl = { + nick = "timer", + parent = WIDGET, + creation = "", + callback = { + action_cb = "", + }, +} + +function ctrl.createElement(class, arg) + return Timer() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/toggle.lua b/iup/srclua5/toggle.lua new file mode 100755 index 0000000..da9380b --- /dev/null +++ b/iup/srclua5/toggle.lua @@ -0,0 +1,18 @@ +------------------------------------------------------------------------------ +-- Toggle class +------------------------------------------------------------------------------ +local ctrl = { + nick = "toggle", + parent = WIDGET, + creation = "S-", + callback = { + action = "n", + } +} + +function ctrl.createElement(class, arg) + return Toggle(arg.title) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/tree.lua b/iup/srclua5/tree.lua new file mode 100755 index 0000000..bd8daf7 --- /dev/null +++ b/iup/srclua5/tree.lua @@ -0,0 +1,76 @@ +------------------------------------------------------------------------------ +-- Tree class +------------------------------------------------------------------------------ +local ctrl = { + nick = "tree", + parent = WIDGET, + creation = "", + callback = { + selection_cb = "nn", + multiselection_cb = "nn", -- fake definition to be replaced by treefuncs module + branchopen_cb = "n", + branchclose_cb = "n", + executeleaf_cb = "n", + renamenode_cb = "ns", + noderemoved_cb = "ns", -- fake definition to be replaced by treefuncs module + rename_cb = "ns", + showrename_cb = "n", + rightclick_cb = "n", + dragdrop_cb = "nnnn", + }, + extrafuncs = 1, +} + +local function TreeSetAttributeHandle(handle, name, value) + if iupGetClass(value) == "iup handle" then value = ihandle_setname(value) end + SetAttribute(handle, name, value) +end + +function TreeSetNodeAttrib(handle, node, id) + if node.color then SetAttribute(handle, "COLOR"..id, node.color) end + if node.state then SetAttribute(handle, "STATE"..id, node.state) end + if node.titlefont then SetAttribute(handle, "TITLEFONT"..id, node.titlefont) end + if node.marked then SetAttribute(handle, "MARKED"..id, node.marked) end + if node.image then TreeSetAttributeHandle(handle, "IMAGE"..id, node.image) end + if node.imageexpanded then TreeSetAttributeHandle(handle, "IMAGEEXPANDED"..id, node.imageexpanded) end + if node.userid then TreeSetUserId(handle, id, node.userid) end +end + +function TreeSetValueRec(handle, t, id) + if t == nil then return end + local cont = #t + while cont >= 0 do + local node = t[cont] + if type(node) == "table" then + if node.branchname then + SetAttribute(handle, "ADDBRANCH"..id, node.branchname) + TreeSetNodeAttrib(handle, node, id+1) + TreeSetValueRec(handle, node, id+1) + elseif node.leafname then + SetAttribute(handle, "ADDLEAF"..id, node.leafname) + TreeSetNodeAttrib(handle, node, id+1) + end + else + if node then + SetAttribute(handle, "ADDLEAF"..id, node) + end + end + cont = cont - 1 + end +end + +function TreeSetValue(handle, t, id) + if (not id) then + id = 0 -- default is the root + if t.branchname then SetAttribute(handle, "TITLE0", t.branchname) end + TreeSetNodeAttrib(handle, t, 0) + end + TreeSetValueRec(handle, t, id) +end + +function ctrl.createElement(class, arg) + return Tree() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/user.lua b/iup/srclua5/user.lua new file mode 100755 index 0000000..c202be3 --- /dev/null +++ b/iup/srclua5/user.lua @@ -0,0 +1,17 @@ + +------------------------------------------------------------------------------ +-- User class +------------------------------------------------------------------------------ +local ctrl = { + nick = "user", + parent = WIDGET, + creation = "", + callback = {} +} + +function ctrl.createElement(class, arg) + return User() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/val.lua b/iup/srclua5/val.lua new file mode 100755 index 0000000..ba94255 --- /dev/null +++ b/iup/srclua5/val.lua @@ -0,0 +1,20 @@ +------------------------------------------------------------------------------ +-- Val class +------------------------------------------------------------------------------ +local ctrl = { + nick = "val", + parent = WIDGET, + creation = "s", + callback = { + mousemove_cb = "d", + button_press_cb = "d", + button_release_cb = "d", + }, +} + +function ctrl.createElement(class, arg) + return Val(arg[1]) +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/vbox.lua b/iup/srclua5/vbox.lua new file mode 100755 index 0000000..b98984c --- /dev/null +++ b/iup/srclua5/vbox.lua @@ -0,0 +1,20 @@ +------------------------------------------------------------------------------ +-- VBox class +------------------------------------------------------------------------------ +local ctrl = { + nick = "vbox", + parent = BOX, + creation = "-", + callback = {} +} + +function ctrl.append (handle, elem) + Append(handle, elem) +end + +function ctrl.createElement(class, arg) + return Vbox() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") diff --git a/iup/srclua5/zbox.lua b/iup/srclua5/zbox.lua new file mode 100755 index 0000000..579c00b --- /dev/null +++ b/iup/srclua5/zbox.lua @@ -0,0 +1,32 @@ +------------------------------------------------------------------------------ +-- ZBox class +------------------------------------------------------------------------------ +local ctrl = { + nick = "zbox", + parent = BOX, + creation = "-", + callback = {} +} + +function ctrl.append (handle, elem) + ihandle_setname(elem) + Append(handle, elem) +end + +function ctrl.SetChildrenNames(obj) + if obj then + local i = 1 + while obj[i] do + ihandle_setname(obj[i]) + i = i+1 + end + end +end + +function ctrl.createElement(class, arg) + ctrl.SetChildrenNames(arg) + return Zbox() +end + +iupRegisterWidget(ctrl) +iupSetClass(ctrl, "iup widget") |