From: John L. <jr...@us...> - 2007-06-15 00:00:21
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16698/wxLua/bindings/wxstc Modified Files: wxstc_datatypes.lua Log Message: Add "voidptr_long" binding tag to allow using void* as a number Speed up bindings by using numbers as keys in the registry (avoid lua doing a string copy) Get rid of wxLuaState::GetXXXTag functions, something better needs to be implemented, using global vars for the few tags that we really use often now Allow the wxLuaStackDialog to be able to show lua's registry lots of cleanup in bindings.wx.lua Index: wxstc_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** wxstc_datatypes.lua 14 Jun 2007 01:23:08 -0000 1.57 --- wxstc_datatypes.lua 14 Jun 2007 23:59:41 -0000 1.58 *************** *** 189,192 **** --- 189,197 ---- Name = "void", }, + voidptr_long = { + DefType = "special", + IsNumber = true, + Name = "voidptr_long", + }, wchar_t = { DefType = "number", |