mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 23:25:40 +12:00
22 lines
No EOL
298 B
C++
22 lines
No EOL
298 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "helpers.hpp"
|
|
|
|
namespace IVFC {
|
|
|
|
struct IVFCLevel {
|
|
u64 logicalOffset;
|
|
u64 size;
|
|
u64 blockSize;
|
|
};
|
|
|
|
struct IVFC {
|
|
u64 masterHashSize;
|
|
std::vector<IVFCLevel> levels;
|
|
};
|
|
|
|
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc);
|
|
|
|
} // namespace IVFC
|