X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14372de82e2129fab7d416de79fc3d95e57960b9..d65e9d5707e2e80127ef85927d191c4911169f13:/include/wx/msw/private/sockmsw.h diff --git a/include/wx/msw/private/sockmsw.h b/include/wx/msw/private/sockmsw.h index 1c0a6fe627..edfc84d911 100644 --- a/include/wx/msw/private/sockmsw.h +++ b/include/wx/msw/private/sockmsw.h @@ -7,7 +7,7 @@ // (C) 1999-2000, Guillermo Rodriguez Garcia // (C) 2008 Vadim Zeitlin // RCS_ID: $Id$ -// License: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -39,6 +39,14 @@ public: virtual wxSocketError GetLastError() const; + 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 void DoClose(); @@ -53,7 +61,7 @@ private: friend class wxSocketMSWManager; - DECLARE_NO_COPY_CLASS(wxSocketImplMSW) + wxDECLARE_NO_COPY_CLASS(wxSocketImplMSW); }; #endif /* _WX_MSW_GSOCKMSW_H_ */