X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/75ed1d15d0d866cac78f7c0da176db8dd5288bc8..9018abe3ef28d237b0421c8d96987907adbe5532:/include/wx/sckstrm.h diff --git a/include/wx/sckstrm.h b/include/wx/sckstrm.h index 0f05c8c3f7..57484b17fc 100644 --- a/include/wx/sckstrm.h +++ b/include/wx/sckstrm.h @@ -32,6 +32,8 @@ class WXDLLEXPORT wxSocketOutputStream : public wxOutputStream protected: wxSocketBase *m_o_socket; + + size_t OnSysWrite(const void *buffer, size_t bufsize); }; class WXDLLEXPORT wxSocketInputStream : public wxInputStream @@ -48,6 +50,8 @@ class WXDLLEXPORT wxSocketInputStream : public wxInputStream protected: wxSocketBase *m_i_socket; + + size_t OnSysRead(void *buffer, size_t bufsize); }; class WXDLLEXPORT wxSocketStream : public wxSocketInputStream,