Make APT::GetLockHandle fail to skip aptInit

This commit is contained in:
wheremyfoodat 2022-09-18 02:18:40 +03:00
parent 6154a360c6
commit 5bc8c9d671
6 changed files with 33 additions and 4 deletions

View file

@ -1,11 +1,17 @@
#pragma once
#include "helpers.hpp"
#include "kernel_types.hpp"
#include "memory.hpp"
class APTService {
Handle handle = KernelHandles::APT;
Memory& mem;
// Service commands
void getLockHandle(u32 messagePointer);
public:
APTService(Memory& mem) : mem(mem) {}
void reset();
void handleSyncRequest(u32 messagePointer);
};

0
include/services/hid.hpp Normal file
View file