From: John L. <jr...@us...> - 2005-12-12 05:16:39
|
Update of /cvsroot/wxlua/wxLua/bindings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9956/wxLua/bindings Modified Files: genwxbind.lua Log Message: Fix Makefiles to use wx-config --exec-prefix for lib dir remove wxLiaCheckRunError, make CheckRunError static in wxLuaState Capitalize all functions in genwxbind.lua, provide means to dump data types wxGetFreeMemory depends on wxLongLong in 2.6, rem out until solution found comment wx.rules and give better names to variables move garbageCollect, setTableFunc, getTableFunc to wxlbind.cpp from internal.cpp rename to wxLua_lua_XXX move callFunction from internal.cpp to wxlstate.cpp prepend with wxLua_lua_XXX Index: genwxbind.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** genwxbind.lua 30 Nov 2005 04:46:16 -0000 1.12 --- genwxbind.lua 12 Dec 2005 05:16:31 -0000 1.13 *************** *** 58,62 **** ! -- simple function to completely dump the contents of a table function DumpTable(atable, prefix, tablelevel) if prefix == nil then prefix = "" end --- 58,65 ---- ! -- completely dump the contents of a table ! -- atable is the input table to dump the contents of [...992 lines suppressed...] SerializeDataTypes() print("Done\n") end --- 4434,4448 ---- InitDataTypes() ! ReadOverrideFile() ! local interfaceList = GenerateInterfaceData() ! WriteWrapperFiles(interfaceList) SerializeDataTypes() + --local fileTable = GenerateDataTypesFileTable() + --for i = 1, table.getn(fileTable) do print(fileTable[i]) end + --WriteTableToFile(interface.filename, fileData, false) + print("Done\n") end |