From: John L. <jr...@us...> - 2007-06-27 19:57:01
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18874/wxLua/bindings/wxstc Modified Files: wxstc_datatypes.lua Log Message: Add wxDynamicLibrary and friends to bindings Index: wxstc_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** wxstc_datatypes.lua 27 Jun 2007 03:11:27 -0000 1.69 --- wxstc_datatypes.lua 27 Jun 2007 19:56:28 -0000 1.70 *************** *** 783,786 **** --- 783,791 ---- Name = "wxDCClipper", }, + wxDLFlags = { + DefType = "enum", + IsNumber = true, + Name = "wxDLFlags", + }, wxDataFormat = { Condition = "wxLUA_USE_wxDataObject && wxUSE_DATAOBJ", *************** *** 1050,1053 **** --- 1055,1081 ---- Name = "wxDuplexMode", }, + wxDynamicLibrary = { + DefType = "class", + Encapsulate = true, + IsNumber = false, + Name = "wxDynamicLibrary", + }, + wxDynamicLibraryCategory = { + DefType = "enum", + IsNumber = true, + Name = "wxDynamicLibraryCategory", + }, + wxDynamicLibraryDetails = { + DefType = "class", + Encapsulate = true, + IsNumber = false, + Name = "wxDynamicLibraryDetails", + }, + wxDynamicLibraryDetailsArray = { + DefType = "class", + Encapsulate = true, + IsNumber = false, + Name = "wxDynamicLibraryDetailsArray", + }, wxEOL = { Condition = "wxUSE_STREAMS", *************** *** 2744,2747 **** --- 2772,2780 ---- Name = "wxPlatformInfo", }, + wxPluginCategory = { + DefType = "enum", + IsNumber = true, + Name = "wxPluginCategory", + }, wxPoint = { Condition = "wxLUA_USE_wxPointSizeRect", *************** *** 4147,4150 **** --- 4180,4184 ---- wxLUA_USE_wxDisplay = "wxLUA_USE_wxDisplay", wxLUA_USE_wxDragDrop = "wxLUA_USE_wxDragDrop", + wxLUA_USE_wxDynamicLibrary = "wxLUA_USE_wxDynamicLibrary", wxLUA_USE_wxFile = "wxLUA_USE_wxFile", wxLUA_USE_wxFileDialog = "wxLUA_USE_wxFileDialog", |