[ox/fs] Rename Result<const char*> FileSystem::read to directAccess

This commit is contained in:
2021-04-18 15:03:45 -05:00
parent 9d74c5b464
commit 858ba9fe8d
3 changed files with 13 additions and 13 deletions

View File

@ -43,13 +43,13 @@ class PassThroughFS: public FileSystem {
Error read(const char *path, void *buffer, std::size_t buffSize) noexcept override;
Result<const uint8_t*> read(const char*) noexcept override;
Result<const uint8_t*> directAccess(const char*) noexcept override;
Error read(uint64_t inode, void *buffer, std::size_t size) noexcept override;
Error read(uint64_t inode, std::size_t readStart, std::size_t readSize, void *buffer, std::size_t *size) noexcept override;
Result<const uint8_t*> read(uint64_t) noexcept override;
Result<const uint8_t*> directAccess(uint64_t) noexcept override;
Result<Vector<String>> ls(const char *dir) noexcept override;