From: John L. <jr...@us...> - 2009-05-19 03:21:01
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15045/wxLua/modules/wxluasocket/src Modified Files: wxluasocket_bind.cpp Log Message: Do not export parts of the bindings that are only used internally. Declare them as extern within the cpp file of the binding. Index: wxluasocket_bind.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxluasocket_bind.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** wxluasocket_bind.cpp 14 May 2009 05:06:21 -0000 1.33 --- wxluasocket_bind.cpp 19 May 2009 03:20:53 -0000 1.34 *************** *** 615,618 **** --- 615,628 ---- static const char* wxluabaseclassnames_wxLuaDebuggerServer[] = { wxluaclassname_wxEvtHandler, NULL }; static wxLuaBindClass* wxluabaseclassbinds_wxLuaDebuggerServer[] = { NULL }; + // --------------------------------------------------------------------------- + // Lua Tag Method Values and Tables for each Class + // --------------------------------------------------------------------------- + + extern wxLuaBindMethod wxLuaDebuggerEvent_methods[]; + extern int wxLuaDebuggerEvent_methodCount; + extern wxLuaBindMethod wxLuaDebuggerServer_methods[]; + extern int wxLuaDebuggerServer_methodCount; + + |