mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
27 lines
No EOL
451 B
C++
27 lines
No EOL
451 B
C++
#pragma once
|
|
#include <fnd/types.h>
|
|
#include <fnd/rsa.h>
|
|
#include <nn/hac/define/macro.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
namespace kc
|
|
{
|
|
enum KernelCapId
|
|
{
|
|
KC_INVALID = 0,
|
|
KC_THREAD_INFO = 3,
|
|
KC_ENABLE_SYSTEM_CALLS = 4,
|
|
KC_MEMORY_MAP = 6,
|
|
KC_IO_MEMORY_MAP = 7,
|
|
KC_ENABLE_INTERUPTS = 11,
|
|
KC_MISC_PARAMS = 13,
|
|
KC_KERNEL_VERSION = 14,
|
|
KC_HANDLE_TABLE_SIZE = 15,
|
|
KC_MISC_FLAGS = 16
|
|
};
|
|
}
|
|
}
|
|
} |