mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
21 lines
No EOL
506 B
C++
21 lines
No EOL
506 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
// Please forgive me for how everything in this file is named
|
|
// "dlp:SRVR" is not a nice name to work with
|
|
class DlpSrvrService {
|
|
Handle handle = KernelHandles::DLP_SRVR;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, dlpSrvrLogger)
|
|
|
|
// Service commands
|
|
void isChild(u32 messagePointer);
|
|
|
|
public:
|
|
DlpSrvrService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |