]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private/sockmsw.h
Fixed broken 'hidden categories' mode (aka. alphabetic mode); Added distinct names...
[wxWidgets.git] / include / wx / msw / private / sockmsw.h
index 2490b15482b382b21074bb939639cbca168080b6..5313b5446edb98a76f9da33f6d6b106bcf877f67 100644 (file)
@@ -37,14 +37,17 @@ public:
 
     virtual ~wxSocketImplMSW();
 
-    virtual wxSocketImpl *WaitConnection(wxSocketBase& wxsocket);
+    virtual wxSocketError GetLastError() const;
 
-
-    int Read(void *buffer, int size);
-    int Write(const void *buffer, int size);
+    virtual void ReenableEvents(wxSocketEventFlags WXUNUSED(flags))
+    {
+        // notifications are never disabled in this implementation, there is no
+        // need for this as WSAAsyncSelect() only sends notification once when
+        // the new data becomes available anyhow, so there is no need to do
+        // anything here
+    }
 
 private:
-    virtual wxSocketError DoHandleConnect(int ret);
     virtual void DoClose();
 
     virtual void UnblockAndRegisterWithEventLoop()
@@ -54,12 +57,6 @@ private:
         wxSocketManager::Get()->Install_Callback(this);
     }
 
-    wxSocketError Connect_Timeout();
-    int Recv_Stream(void *buffer, int size);
-    int Recv_Dgram(void *buffer, int size);
-    int Send_Stream(const void *buffer, int size);
-    int Send_Dgram(const void *buffer, int size);
-
     int m_msgnumber;
 
     friend class wxSocketMSWManager;