pkgextract print outer pfs header

This commit is contained in:
georgemoralis 2023-01-31 17:19:46 +02:00
parent 1323147b5b
commit 4703224071
6 changed files with 93 additions and 3 deletions

View file

@ -0,0 +1,18 @@
#include "PFS.h"
PFS::PFS()
{
}
PFS::~PFS()
{
}
bool PFS::pfsOuterReadHeader(U08* psfOuterStart)
{
psfOuterheader = (PFS_HDR&)psfOuterStart[0];
return true;
}