Update of /cvsroot/wxlua/wxLua/modules/wxbindstc/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14219/wxLua/modules/wxbindstc/include
Modified Files:
wxbind.h
Log Message:
Huge changes, overloaded functions by default
replace wx.wxNull with wx.NULL
change WXLUA_VERSION and others with wxLUA_VERSION
class member enums are part of class table
static class member functions are part of class table
%properties are generated on the fly
... and more, see docs/changelog.txt
Index: wxbind.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbindstc/include/wxbind.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** wxbind.h 15 Mar 2007 23:24:57 -0000 1.20
--- wxbind.h 31 May 2007 17:18:53 -0000 1.21
***************
*** 26,32 ****
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 6
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 6
// ---------------------------------------------------------------------------
--- 26,32 ----
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 7
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 7
// ---------------------------------------------------------------------------
***************
*** 65,71 ****
--- 65,75 ----
extern WXDLLIMPEXP_WXBINDSTC WXLUAMETHOD wxStyledTextCtrl_methods[];
extern WXDLLIMPEXP_DATA_WXBINDSTC(int) wxStyledTextCtrl_methodCount;
+ extern WXDLLIMPEXP_WXBINDSTC WXLUADEFINE wxStyledTextCtrl_enums[];
+ extern WXDLLIMPEXP_DATA_WXBINDSTC(int) wxStyledTextCtrl_enumCount;
extern WXDLLIMPEXP_DATA_WXBINDSTC(int) s_wxluatag_wxStyledTextEvent;
extern WXDLLIMPEXP_WXBINDSTC WXLUAMETHOD wxStyledTextEvent_methods[];
extern WXDLLIMPEXP_DATA_WXBINDSTC(int) wxStyledTextEvent_methodCount;
+ extern WXDLLIMPEXP_WXBINDSTC WXLUADEFINE wxStyledTextEvent_enums[];
+ extern WXDLLIMPEXP_DATA_WXBINDSTC(int) wxStyledTextEvent_enumCount;
|