returns true if the file read was completed (successfully or unsuccessfully) check IsError to check if the whole requested file (piece) was read
| 57 | // returns true if the file read was completed (successfully or unsuccessfully) |
| 58 | // check IsError to check if the whole requested file (piece) was read |
| 59 | bool CRefReadStreamProxy::IsFinished() |
| 60 | { |
| 61 | return m_bFinished; |
| 62 | } |
| 63 | |
| 64 | // returns the number of bytes read so far (the whole buffer size if IsFinished()) |
| 65 | unsigned int CRefReadStreamProxy::GetBytesRead (bool bWait) |
no outgoing calls
no test coverage detected