Add empty csnd service
This commit is contained in:
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;
|
||||
|
||||
Reference in New Issue
Block a user