| 151 | } |
| 152 | |
| 153 | int FileStream::GetPos() |
| 154 | { |
| 155 | if (mCacheBuffer != NULL) |
| 156 | return mVFilePos; |
| 157 | return (int)ftell(mFP); |
| 158 | } |
| 159 | |
| 160 | ////////////////////////////////////////////////////////////////////////// |
| 161 |
nothing calls this directly
no test coverage detected