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:
@@ -141,6 +141,7 @@ wxMSW:
|
|||||||
- Fix the bug with wxFileDialog not being shown at all if the default file name
|
- Fix the bug with wxFileDialog not being shown at all if the default file name
|
||||||
was invalid.
|
was invalid.
|
||||||
- Fix hang in keyboard navigation code with radio buttons under Windows 2000.
|
- Fix hang in keyboard navigation code with radio buttons under Windows 2000.
|
||||||
|
- Implement wxWinINetInputStream::GetSize() (spicerno).
|
||||||
|
|
||||||
wxGTK:
|
wxGTK:
|
||||||
|
|
||||||
|
@@ -129,6 +129,7 @@ public:
|
|||||||
{ return -1; }
|
{ return -1; }
|
||||||
wxFileOffset TellI() const
|
wxFileOffset TellI() const
|
||||||
{ return -1; }
|
{ return -1; }
|
||||||
|
size_t GetSize() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void SetError(wxStreamError err) { m_lasterror=err; }
|
void SetError(wxStreamError err) { m_lasterror=err; }
|
||||||
@@ -138,6 +139,18 @@ protected:
|
|||||||
DECLARE_NO_COPY_CLASS(wxWinINetInputStream)
|
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)
|
size_t wxWinINetInputStream::OnSysRead(void *buffer, size_t bufsize)
|
||||||
{
|
{
|
||||||
DWORD bytesread = 0;
|
DWORD bytesread = 0;
|
||||||
|
Reference in New Issue
Block a user