Fixing/Testing sockets on OpenVMS

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2009-01-12 09:06:36 +00:00
parent 0e1381f2fc
commit 66034aba2e
5 changed files with 124 additions and 6 deletions

View File

@@ -101,7 +101,7 @@ WX_DECLARE_LIST(EventWorker, EList);
//and list of two type worker classes that serve clients
class Server : public wxApp
{
DECLARE_EVENT_TABLE();
DECLARE_EVENT_TABLE()
public:
Server() : m_maxConnections(-1) {}
~Server() {}
@@ -198,7 +198,7 @@ private:
void DoWrite();
void DoRead();
DECLARE_EVENT_TABLE();
DECLARE_EVENT_TABLE()
};
/******************* Implementation ******************/