Displaying 1 result from an estimated 1 matches for "getdownloadtotal".
2007 Nov 21
6
MediaCtrl
...small problem with a
few functions:
wxFileOffset Seek(wxFileOffset where, wxSeekMode mode = wxFromStart);
wxFileOffset Tell(); //FIXME: This should be const
wxFileOffset Length(); //FIXME: This should be const
wxFileOffset GetDownloadProgress(); // DirectShow only
wxFileOffset GetDownloadTotal(); // DirectShow only
Wx file offset is typedefed in WxWindows to an int or 64-bit int
depending on compiler. In wxMediaCtrl.h I''ve typedeffed it to int
witch seems to work but will break for relay huge files on platforms
that supports it (windows and ?). Have anyone bumped into this b...