mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +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);
|
||||
};
|
|
@ -14,6 +14,7 @@
|
|||
#include "services/cam.hpp"
|
||||
#include "services/cecd.hpp"
|
||||
#include "services/cfg.hpp"
|
||||
#include "services/csnd.hpp"
|
||||
#include "services/dlp_srvr.hpp"
|
||||
#include "services/dsp.hpp"
|
||||
#include "services/frd.hpp"
|
||||
|
@ -56,6 +57,7 @@ class ServiceManager {
|
|||
CAMService cam;
|
||||
CECDService cecd;
|
||||
CFGService cfg;
|
||||
CSNDService csnd;
|
||||
DlpSrvrService dlp_srvr;
|
||||
DSPService dsp;
|
||||
HIDService hid;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue