DiscExtractor: Don't hardcode names in ExportApploader and ExportDOL

This commit is contained in:
JosJuice
2017-06-17 16:53:55 +02:00
parent 89c901780e
commit baf3a3b188
3 changed files with 12 additions and 10 deletions

View File

@ -21,9 +21,10 @@ bool ExportData(const Volume& volume, const Partition& partition, u64 offset, u6
bool ExportFile(const Volume& volume, const Partition& partition, const FileInfo* file_info,
const std::string& export_filename);
bool ExportApploader(const Volume& volume, const Partition& partition,
const std::string& export_folder);
const std::string& export_filename);
std::optional<u64> GetBootDOLOffset(const Volume& volume, const Partition& partition);
std::optional<u32> GetBootDOLSize(const Volume& volume, const Partition& partition, u64 dol_offset);
bool ExportDOL(const Volume& volume, const Partition& partition, const std::string& export_folder);
bool ExportDOL(const Volume& volume, const Partition& partition,
const std::string& export_filename);
} // namespace DiscIO