mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
29 lines
No EOL
792 B
C++
29 lines
No EOL
792 B
C++
#pragma once
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "helpers.hpp"
|
|
|
|
namespace RomFS {
|
|
struct RomFSNode {
|
|
std::u16string name;
|
|
// The file/directory offset relative to the start of the RomFS
|
|
u64 metadataOffset = 0;
|
|
u64 dataOffset = 0;
|
|
u64 dataSize = 0;
|
|
bool isDirectory = false;
|
|
|
|
std::vector<std::unique_ptr<RomFSNode>> directories;
|
|
std::vector<std::unique_ptr<RomFSNode>> files;
|
|
};
|
|
|
|
// Result codes when dumping RomFS. These are used by the frontend to print appropriate error messages if RomFS dumping fails
|
|
enum class DumpingResult {
|
|
Success = 0,
|
|
InvalidFormat = 1, // ROM is a format that doesn't support RomFS, such as ELF
|
|
NoRomFS = 2
|
|
};
|
|
|
|
std::unique_ptr<RomFSNode> parseRomFSTree(uintptr_t romFS, u64 romFSSize);
|
|
} // namespace RomFS
|