Visualage fixes for Stefan's socket implementations

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2001-05-21 20:29:42 +00:00
parent c3302e7e29
commit 2910855229
4 changed files with 27 additions and 7 deletions

View File

@@ -14,7 +14,16 @@
#include <sys/time.h>
#include <sys/types.h>
#ifdef __EMX__
#include <unistd.h>
#else
#include <utils.h>
#undef BYTE_ORDER
#include <types.h>
#include <nerrno.h>
#define INCL_ORDERS
#endif
#include "wx/event.h"
#include "wx/icon.h"
@@ -95,11 +104,12 @@ protected:
// PM-specific wxApp definitions */
//
private:
int m_maxSocketHandles;
int m_maxSocketNr;
int m_lastUsedHandle;
fd_set m_readfds, m_writefds;
void *m_sockCallbackInfo;
int m_maxSocketHandles;
int m_maxSocketNr;
int m_lastUsedHandle;
fd_set m_readfds;
fd_set m_writefds;
void* m_sockCallbackInfo;
public: