From d577d991b97ae2b5ee1af23641bcffc3f83af5b2 Mon Sep 17 00:00:00 2001 From: Pixel Date: Wed, 4 Nov 2009 11:56:41 -0800 Subject: Initial import. Contains the im, cd and iup librairies, and a "working" Makefile for them under linux. --- iup/srclua3/il_sbox.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 iup/srclua3/il_sbox.c (limited to 'iup/srclua3/il_sbox.c') diff --git a/iup/srclua3/il_sbox.c b/iup/srclua3/il_sbox.c new file mode 100755 index 0000000..6742819 --- /dev/null +++ b/iup/srclua3/il_sbox.c @@ -0,0 +1,50 @@ +/** \file + * \brief Bindig of iupsbox to Lua 3. + * + * See Copyright Notice in "iup.h" + */ + +#include + +#include "iup.h" + +#include + +#include "iuplua.h" +#include "il.h" +#include "il_controls.h" + +static void CreateSbox(void) +{ + int tag = (int)lua_getnumber(lua_getglobal("iuplua_tag")); + lua_pushusertag(IupSbox(iuplua_checkihandle(1)), tag); +} + +int sboxlua_open(void) +{ + lua_register("iupCreateSbox", CreateSbox); + +#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("luasbox.lua"); +#endif + + return 1; +} -- cgit v1.2.3