mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
17 lines
No EOL
330 B
C++
17 lines
No EOL
330 B
C++
#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);
|
|
}; |