mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-14 10:09:48 +12:00
19 lines
No EOL
390 B
C++
19 lines
No EOL
390 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class IRUserService {
|
|
Handle handle = KernelHandles::IR_USER;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, irUserLogger)
|
|
|
|
// Service commands
|
|
|
|
public:
|
|
IRUserService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |