| 83 | } |
| 84 | |
| 85 | std::streamsize CASCStream::size() const { |
| 86 | ULONGLONG ulongsize; |
| 87 | CascGetFileSize64(_file, &ulongsize); |
| 88 | return static_cast<std::streamsize>(ulongsize); |
| 89 | } |
| 90 | |
| 91 | static bool casc_progress_callback(void *PtrUserParam, LPCSTR szWork, LPCSTR szObject, DWORD CurrentValue, DWORD TotalValue) { |
| 92 | if (szObject) { |
nothing calls this directly
no outgoing calls
no test coverage detected