implement wxWinINetInputStream::GetSize() (#9600) [backport from trunk]

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@55213 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-08-23 18:44:03 +00:00
parent 1c802b3b14
commit 7abb1a56f1
2 changed files with 14 additions and 0 deletions

View File

@@ -141,6 +141,7 @@ wxMSW:
- Fix the bug with wxFileDialog not being shown at all if the default file name
was invalid.
- Fix hang in keyboard navigation code with radio buttons under Windows 2000.
- Implement wxWinINetInputStream::GetSize() (spicerno).
wxGTK:

View File

@@ -129,6 +129,7 @@ public:
{ return -1; }
wxFileOffset TellI() const
{ return -1; }
size_t GetSize() const;
protected:
void SetError(wxStreamError err) { m_lasterror=err; }
@@ -138,6 +139,18 @@ protected:
DECLARE_NO_COPY_CLASS(wxWinINetInputStream)
};
size_t wxWinINetInputStream::GetSize() const
{
DWORD contentLength = 0;
DWORD dwSize = sizeof(contentLength);
DWORD index = 0;
if ( HttpQueryInfo( m_hFile, HTTP_QUERY_CONTENT_LENGTH | HTTP_QUERY_FLAG_NUMBER, &contentLength, &dwSize, &index) )
return contentLength;
else
return 0;
}
size_t wxWinINetInputStream::OnSysRead(void *buffer, size_t bufsize)
{
DWORD bytesread = 0;