Hopefully we're good to start sending commands to services now

This commit is contained in:
wheremyfoodat 2022-09-18 00:21:32 +03:00
parent 208c18356b
commit 6154a360c6
10 changed files with 110 additions and 32 deletions

11
include/services/apt.hpp Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#include "helpers.hpp"
#include "kernel_types.hpp"
class APTService {
Handle handle = KernelHandles::APT;
public:
void reset();
void handleSyncRequest(u32 messagePointer);
};