mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
20 lines
No EOL
296 B
C++
20 lines
No EOL
296 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
|