nstool/lib/libhac/include/nn/hac/pfs.h

45 lines
844 B
C
Raw Normal View History

2018-08-07 09:31:06 +00:00
#pragma once
#include <fnd/types.h>
#include <fnd/sha.h>
2018-08-07 07:17:51 +00:00
#include <nn/hac/macro.h>
2018-08-07 07:17:51 +00:00
namespace nn
{
namespace hac
{
namespace pfs
{
static const uint32_t kPfsStructMagic = _MAKE_STRUCT_MAGIC_U32("PFS0");
static const uint32_t kHashedPfsStructMagic = _MAKE_STRUCT_MAGIC_U32("HFS0");
static const size_t kHeaderAlign = 64;
}
#pragma pack(push,1)
struct sPfsHeader
{
le_uint32_t st_magic;
le_uint32_t file_num;
2018-04-21 09:38:26 +00:00
le_uint32_t name_table_size;
byte_t padding[4];
};
struct sPfsFile
{
le_uint64_t data_offset;
le_uint64_t size;
le_uint32_t name_offset;
byte_t padding[4];
}; // sizeof(0x18)
struct sHashedPfsFile
{
le_uint64_t data_offset;
le_uint64_t size;
le_uint32_t name_offset;
le_uint32_t hash_protected_size;
byte_t padding[8];
fnd::sha::sSha256Hash hash;
}; // sizeof(0x40)
#pragma pack(pop)
}
2018-08-07 07:17:51 +00:00
}