| 629 | } |
| 630 | |
| 631 | bool RetrieveTimes(const char *pFilename, int Type, time_t *pCreated, time_t *pModified) override |
| 632 | { |
| 633 | dbg_assert(Type == TYPE_ABSOLUTE || (Type >= TYPE_SAVE && Type < m_NumPaths), "Type invalid"); |
| 634 | |
| 635 | char aBuffer[IO_MAX_PATH_LENGTH]; |
| 636 | return fs_file_time(GetPath(Type, pFilename, aBuffer, sizeof(aBuffer)), pCreated, pModified) == 0; |
| 637 | } |
| 638 | |
| 639 | bool CalculateHashes(const char *pFilename, int Type, SHA256_DIGEST *pSha256, unsigned *pCrc) override |
| 640 | { |
nothing calls this directly
no test coverage detected