Add ExtSaveData::CreateDirectory and stub srv::unsubscribe

This commit is contained in:
wheremyfoodat 2023-09-05 14:28:52 +03:00
parent 12392b9cd5
commit e67dc65118
4 changed files with 32 additions and 0 deletions

View file

@ -9,6 +9,7 @@ public:
u64 getFreeBytes() override { Helpers::panic("ExtSaveData::GetFreeBytes unimplemented"); return 0; }
std::string name() override { return "ExtSaveData::" + backingFolder; }
HorizonResult createDirectory(const FSPath& path) override;
HorizonResult createFile(const FSPath& path, u64 size) override;
HorizonResult deleteFile(const FSPath& path) override;