Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4013/wxLua/bindings
Modified Files:
genwxbind.lua
Log Message:
add thread.i interface file
try to make the bindings work for wxICON_QUESTION, failed has some debugging for now
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** genwxbind.lua 17 Nov 2005 05:51:20 -0000 1.3
--- genwxbind.lua 19 Nov 2005 23:58:48 -0000 1.4
***************
*** 31,37 ****
keep = { "[]", "==", "&&", "||", "//", "/*", "*/", "*", "&", "|", "(", ")", "[", "]", ",", "=", "{", "!" } -- keep delimiters, except for white space
! typeDefs = {} -- all typedefs read from the interface files
dataTypes = {} -- all datatypes; int, double, class names
! dataTypeAttribs = {} -- attributes for data types; unsigned, const
functionAttribs = {} -- attributes for functions; static, virtual
--- 31,37 ----
keep = { "[]", "==", "&&", "||", "//", "/*", "*/", "*", "&", "|", "(", ")", "[", "]", ",", "=", "{", "!" } -- keep delimiters, except for white space
[...5922 lines suppressed...]
***************
*** 4413,4420 ****
-- BuildConditionsTable();
InitDataTypes()
!
readOverrideFile()
!
! generateWrapperFiles()
SerializeDataTypes()
--- 4392,4400 ----
-- BuildConditionsTable();
InitDataTypes()
!
readOverrideFile()
!
! local interfaceList = generateInterfaceData()
! writeWrapperFiles(interfaceList)
SerializeDataTypes()
|