From: John L. <jr...@us...> - 2006-08-28 05:26:24
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1034/wxLua/modules/wxluasocket/src Modified Files: wxldserv.cpp wxlhandl.cpp wxlsock.cpp Log Message: Finished cleaning up the code, removed all code from internal.h and internal.cpp and moved it to other files. Do not #include internal.h anymore! Have the functions in wxLuaState that only call C lua funcs call C helper funcs in wxlstate.cpp so that you don't have to create a wxLuaState if you don't really need it. Index: wxldserv.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxldserv.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** wxldserv.cpp 8 Apr 2006 18:22:35 -0000 1.13 --- wxldserv.cpp 28 Aug 2006 05:26:21 -0000 1.14 *************** *** 24,28 **** #include "wx/thread.h" #include "wxluasocket/include/wxldserv.h" - #include "wxlua/include/internal.h" #include "wxluasocket/include/wxlhandl.h" --- 24,27 ---- Index: wxlsock.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxlsock.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** wxlsock.cpp 7 Mar 2006 11:53:42 -0000 1.6 --- wxlsock.cpp 28 Aug 2006 05:26:21 -0000 1.7 *************** *** 23,27 **** #include "wxluasocket/include/wxlsock.h" - #include "wxlua/include/internal.h" #ifdef _MSC_VER --- 23,26 ---- Index: wxlhandl.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxlhandl.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wxlhandl.cpp 2 Mar 2006 03:50:40 -0000 1.2 --- wxlhandl.cpp 28 Aug 2006 05:26:21 -0000 1.3 *************** *** 25,29 **** #include "wxluasocket/include/wxlhandl.h" - #include "wxlua/include/internal.h" // ---------------------------------------------------------------------------- --- 25,28 ---- |