mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-10 00:58:41 +12:00
[IR:USER] Add empty service
This commit is contained in:
parent
46207a3995
commit
1c08912a59
7 changed files with 47 additions and 2 deletions
19
include/services/ir_user.hpp
Normal file
19
include/services/ir_user.hpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue