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 d3cab3095d
commit 65c2d00bd9
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;
};