vfs: Partially implement GetFileTimeStampRaw

Gets rid of homebrew warnings using this func
This commit is contained in:
Morph
2021-09-13 23:02:53 -04:00
parent 081ccc6441
commit 8d63ebcb64
8 changed files with 83 additions and 1 deletions

View File

@ -240,6 +240,12 @@ public:
*/
ResultVal<FileSys::EntryType> GetEntryType(const std::string& path) const;
/**
* Get the timestamp of the specified path
* @return The timestamp of the specified path or error code
*/
ResultVal<FileSys::FileTimeStampRaw> GetFileTimeStampRaw(const std::string& path) const;
private:
FileSys::VirtualDir backing;
};