From d2d81935309e9eb1b24cd9d13dfcc2ae1d985eb4 Mon Sep 17 00:00:00 2001 From: pixel Date: Fri, 27 Jul 2007 14:29:23 +0000 Subject: Upgrading to Lua-5.1 --- cd-tool.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'cd-tool.cpp') diff --git a/cd-tool.cpp b/cd-tool.cpp index fb17871..407f242 100644 --- a/cd-tool.cpp +++ b/cd-tool.cpp @@ -17,11 +17,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: cd-tool.cpp,v 1.47 2005-12-01 13:26:11 pixel Exp $ */ +/* $Id: cd-tool.cpp,v 1.48 2007-07-27 14:29:23 pixel Exp $ */ #define WIP -#define VERSION "0.5" +#define VERSION "0.6" #include #include "Input.h" @@ -181,7 +181,7 @@ enum basecdtool_t { }; struct lua_functypes_t basecdtool_functions[] = { - { BASECDTOOL_LOAD, "load", 0, 1, { LUA_STRING | LUA_OBJECT } }, + { BASECDTOOL_LOAD, "load", 0, 1, { BLUA_STRING | BLUA_OBJECT } }, { -1, 0, 0, 0, 0 } }; @@ -236,13 +236,13 @@ enum cdtool_functions_t { }; struct lua_functypes_t cdtool_functions[] = { - { CDTOOL_PRINT, "print", 0, 1, { LUA_ANY } }, - { CDTOOL_PRINTN, "printn", 1, 1, { LUA_ANY } }, + { CDTOOL_PRINT, "print", 0, 1, { BLUA_ANY } }, + { CDTOOL_PRINTN, "printn", 1, 1, { BLUA_ANY } }, { CDTOOL_QUIT, "quit", 0, 0, 0 }, { CDTOOL_EXIT, "exit", 0, 0, 0 }, - { CDTOOL_INFOS, "infos", 0, 1, { LUA_OBJECT } }, - { CDTOOL_PATH, "path", 0, 1, { LUA_OBJECT } }, - { CDTOOL_PRINTDIR, "printdir", 1, 2, { LUA_STRING, LUA_OBJECT } }, + { CDTOOL_INFOS, "infos", 0, 1, { BLUA_OBJECT } }, + { CDTOOL_PATH, "path", 0, 1, { BLUA_OBJECT } }, + { CDTOOL_PRINTDIR, "printdir", 1, 2, { BLUA_STRING, BLUA_OBJECT } }, { -1, 0, 0, 0, 0 } }; @@ -431,7 +431,8 @@ Lua * start_full_lua(void) { void showbanner() { printm(M_BARE, -"CD-Tool version " VERSION " (c) 2003-2005 Nicolas \"Pixel\" Noble\n" +"CD-Tool version " VERSION " (c) 2003-2007 Nicolas \"Pixel\" Noble\n" +LUA_RELEASE " " LUA_COPYRIGHT "\n" #ifdef WIP "Special version Work In Progress, compiled the " __DATE__ " at " __TIME__ "\n" #endif -- cgit v1.2.3