[VictoriaFalls] Add a get directory ipc call for victoria falls.

This commit is contained in:
Drew Galbraith 2023-11-26 14:48:01 -08:00
parent 7d7cb8024c
commit d0a3bf3936
9 changed files with 263 additions and 0 deletions

View file

@ -12,6 +12,9 @@ class VFSServer : public VFSServerBase {
glcr::ErrorCode HandleOpenFile(const OpenFileRequest&,
OpenFileResponse&) override;
glcr::ErrorCode HandleGetDirectory(const GetDirectoryRequest&,
Directory&) override;
private:
// FIXME: Don't store this as a reference.
Ext2Driver& driver_;