mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
38 lines
No EOL
1.2 KiB
C++
38 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
#include "archive_base.hpp"
|
|
|
|
class SystemSaveDataArchive : public ArchiveBase {
|
|
public:
|
|
SystemSaveDataArchive(Memory& mem) : ArchiveBase(mem) {}
|
|
|
|
u64 getFreeBytes() override {
|
|
Helpers::panic("Unimplemented GetFreeBytes for SystemSaveData archive");
|
|
return 32_MB;
|
|
}
|
|
|
|
std::string name() override { return "SystemSaveData"; }
|
|
|
|
//HorizonResult createDirectory(const FSPath& path) override;
|
|
HorizonResult createFile(const FSPath& path, u64 size) override {
|
|
Helpers::panic("Unimplemented CreateFile for SystemSaveData archive");
|
|
return Result::Success;
|
|
};
|
|
|
|
HorizonResult deleteFile(const FSPath& path) override {
|
|
Helpers::panic("Unimplemented DeleteFile for SystemSaveData archive");
|
|
return Result::Success;
|
|
};
|
|
|
|
Rust::Result<ArchiveBase*, HorizonResult> openArchive(const FSPath& path) override;
|
|
//Rust::Result<DirectorySession, HorizonResult> openDirectory(const FSPath& path) override;
|
|
|
|
FileDescriptor openFile(const FSPath& path, const FilePerms& perms) override {
|
|
Helpers::panic("Unimplemented OpenFile for SystemSaveData archive");
|
|
return {};
|
|
}
|
|
|
|
std::optional<u32> readFile(FileSession* file, u64 offset, u32 size, u32 dataPointer) override {
|
|
Helpers::panic("Unimplemented ReadFile for SystemSaveData archive");
|
|
return {};
|
|
};
|
|
}; |