mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
37 lines
No EOL
921 B
C++
37 lines
No EOL
921 B
C++
#pragma once
|
|
#include <nn/hac/IKernelCapabilityHandler.h>
|
|
#include <nn/hac/HandleTableSizeEntry.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
class HandleTableSizeHandler :
|
|
public IKernelCapabilityHandler
|
|
{
|
|
public:
|
|
HandleTableSizeHandler();
|
|
|
|
void operator=(const HandleTableSizeHandler& other);
|
|
bool operator==(const HandleTableSizeHandler& other) const;
|
|
bool operator!=(const HandleTableSizeHandler& other) const;
|
|
|
|
// kernel capabilty list in/out
|
|
void importKernelCapabilityList(const fnd::List<KernelCapabilityEntry>& caps);
|
|
void exportKernelCapabilityList(fnd::List<KernelCapabilityEntry>& caps) const;
|
|
void clear();
|
|
bool isSet() const;
|
|
|
|
// variables
|
|
uint16_t getHandleTableSize() const;
|
|
void setHandleTableSize(uint16_t size);
|
|
|
|
private:
|
|
const std::string kModuleName = "HANDLE_TABLE_SIZE_HANDLER";
|
|
static const size_t kMaxKernelCapNum = 1;
|
|
|
|
bool mIsSet;
|
|
HandleTableSizeEntry mEntry;
|
|
};
|
|
}
|
|
} |