| 178 | } |
| 179 | |
| 180 | size_t FileStream::getLoc(void) |
| 181 | { |
| 182 | if (!m_file && !m_archive) |
| 183 | return 0; |
| 184 | |
| 185 | if (m_file) |
| 186 | return ftell(m_file); |
| 187 | |
| 188 | return m_archive->getLocInFile(); |
| 189 | } |
| 190 | |
| 191 | size_t FileStream::getSize(void) |
| 192 | { |
nothing calls this directly
no test coverage detected