mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
19 lines
No EOL
395 B
C++
19 lines
No EOL
395 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
class BOSSService {
|
|
Handle handle = KernelHandles::BOSS;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, bossLogger)
|
|
|
|
// Service commands
|
|
void initializeSession(u32 messagePointer);
|
|
|
|
public:
|
|
BOSSService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |