mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
21 lines
431 B
C
21 lines
431 B
C
|
#pragma once
|
||
|
#include <fnd/types.h>
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace hac
|
||
|
{
|
||
|
class IdConverter
|
||
|
{
|
||
|
public:
|
||
|
static uint64_t convertToAocBaseId(uint64_t application_id);
|
||
|
static uint64_t convertToDeltaId(uint64_t application_id);
|
||
|
static uint64_t convertToPatchId(uint64_t application_id);
|
||
|
|
||
|
private:
|
||
|
static const uint64_t kAocBaseId = 0x1000;
|
||
|
static const uint64_t kDeltaId = 0xc00;
|
||
|
static const uint64_t kPatchId = 0x800;
|
||
|
};
|
||
|
}
|
||
|
}
|