From: John L. <jr...@us...> - 2006-06-09 22:51:38
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16561/wxLua/modules/wxluasocket/src Modified Files: wxluasocket_bind.cpp Log Message: cleanup output fix use of wxUSE_FATAL_EXCEPTIONS Index: wxluasocket_bind.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxluasocket_bind.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wxluasocket_bind.cpp 8 Jun 2006 03:22:11 -0000 1.2 --- wxluasocket_bind.cpp 9 Jun 2006 22:51:34 -0000 1.3 *************** *** 37,40 **** --- 37,41 ---- { &wxEVT_WXLUA_DEBUG_STACK_ENUM, "wxEVT_WXLUA_DEBUG_STACK_ENUM", &s_wxluatag_wxLuaDebugEvent }, { &wxEVT_WXLUA_DEBUG_TABLE_ENUM, "wxEVT_WXLUA_DEBUG_TABLE_ENUM", &s_wxluatag_wxLuaDebugEvent }, + { 0, 0, 0 }, }; *************** *** 54,60 **** --- 55,63 ---- // %define // -------------------------------------------------------------------- + // -------------------------------------------------------------------- // %enum // -------------------------------------------------------------------- + { 0, 0 }, }; *************** *** 75,78 **** --- 78,82 ---- // %define %string // -------------------------------------------------------------------- + { 0, 0 }, }; *************** *** 99,102 **** --- 103,110 ---- // ---------------------------------------------------------------------------- + // ---------------------------------------------------------------------------- + // wxLuaGetFunctionList_wxluasocket() is called to register global functions + // ---------------------------------------------------------------------------- + WXLUAMETHOD* wxLuaGetFunctionList_wxluasocket(size_t &count) { *************** *** 111,114 **** --- 119,126 ---- + // ---------------------------------------------------------------------------- + // wxLuaGetClassList_wxluasocket() is called to register classes + // ---------------------------------------------------------------------------- + WXLUACLASS* wxLuaGetClassList_wxluasocket(size_t &count) { |