mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-06 19:11:39 +12:00
Add empty csnd service
This commit is contained in:
parent
f1c805d38f
commit
68346d73dc
7 changed files with 43 additions and 2 deletions
16
include/services/csnd.hpp
Normal file
16
include/services/csnd.hpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
#include "helpers.hpp"
|
||||
#include "kernel_types.hpp"
|
||||
#include "logger.hpp"
|
||||
#include "memory.hpp"
|
||||
|
||||
class CSNDService {
|
||||
Handle handle = KernelHandles::CSND;
|
||||
Memory& mem;
|
||||
MAKE_LOG_FUNCTION(log, csndLogger)
|
||||
|
||||
public:
|
||||
CSNDService(Memory& mem) : mem(mem) {}
|
||||
void reset();
|
||||
void handleSyncRequest(u32 messagePointer);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue