mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
26 lines
422 B
C
26 lines
422 B
C
|
#pragma once
|
||
|
#include <fnd/types.h>
|
||
|
#include <fnd/sha.h>
|
||
|
#include <nn/hac/define/macro.h>
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace hac
|
||
|
{
|
||
|
namespace ini
|
||
|
{
|
||
|
static const uint32_t kIniStructMagic = _MAKE_STRUCT_MAGIC_U32("INI1");
|
||
|
static const size_t kMaxKipNum = 0x50;
|
||
|
}
|
||
|
|
||
|
#pragma pack(push,1)
|
||
|
struct sIniHeader
|
||
|
{
|
||
|
le_uint32_t st_magic;
|
||
|
le_uint32_t size;
|
||
|
le_uint32_t kip_num;
|
||
|
byte_t reserved_01[0x4];
|
||
|
};
|
||
|
#pragma pack(pop)
|
||
|
}
|
||
|
}
|