From: John L. <jr...@us...> - 2006-12-07 06:32:47
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30967/wxLua/modules/wxlua/include Modified Files: wxldefs.h Log Message: update bindings, better docs, add wxAboutBox for 2.8 fix /* */ in genwxbind.lua Remove wxPlatformXXX just use __WXMSW__ or whatever Index: wxldefs.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxldefs.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** wxldefs.h 28 Aug 2006 05:26:20 -0000 1.7 --- wxldefs.h 7 Dec 2006 06:32:44 -0000 1.8 *************** *** 30,34 **** #define WXLUA_RELEASE_VERSION 3 #define WXLUA_SUBRELEASE_VERSION 0 ! #define WXLUA_VERSION_STRING _T("wxLua 2.6.3") // For non-Unix systems (i.e. when building without a configure script), --- 30,34 ---- #define WXLUA_RELEASE_VERSION 3 #define WXLUA_SUBRELEASE_VERSION 0 ! #define WXLUA_VERSION_STRING wxT("wxLua 2.6.3") // For non-Unix systems (i.e. when building without a configure script), *************** *** 41,56 **** // ---------------------------------------------------------------------------- - // Strings pushed into lua to determine the platform - // ---------------------------------------------------------------------------- - - #if defined(__WXGTK__) - #define wxPlatformGTK wxVERSION_NUMBER - #elif defined(__WXMSW__) - #define wxPlatformWindows wxVERSION_NUMBER - #elif defined(__WXMAC__) - #define wxPlatformMac wxVERSION_NUMBER - #endif - - // ---------------------------------------------------------------------------- // If you're using stdcall in Lua, then override this with // "LUACALL = __stdcall" in your makefile or project. --- 41,44 ---- |