Implement GetBytesReceived() in base class

This commit is contained in:
Tobias Taschner
2018-11-02 21:37:45 +01:00
parent ab544da1d2
commit f04094e4ec
4 changed files with 21 additions and 12 deletions

View File

@@ -79,8 +79,6 @@ public:
wxFileOffset GetBytesExpectedToSend() const wxOVERRIDE { return m_dataSize; }
wxFileOffset GetBytesReceived() const wxOVERRIDE { return m_bytesReceived; }
void HandleCallback(DWORD dwInternetStatus, LPVOID lpvStatusInformation,
DWORD dwStatusInformationLength);
@@ -94,7 +92,6 @@ private:
wxScopedPtr<wxWebAuthChallengeWinHTTP> m_authChallenge;
wxMemoryBuffer m_dataWriteBuffer;
wxFileOffset m_dataWritten;
wxFileOffset m_bytesReceived;
void SendRequest();
@@ -105,7 +102,6 @@ private:
void SetFailedWithLastError();
friend class wxWebAuthChallengeWinHTTP;
friend class wxWebResponseWinHTTP;
wxDECLARE_NO_COPY_CLASS(wxWebRequestWinHTTP);
};