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);
|
||||
};
|
||||
Reference in New Issue
Block a user