mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 12:07:53 +00:00
Added stubs for audio services. (#116)
* stubs for audout:u, audin:u, audrec:u, audren:u, codecctl and decoding tables with nullptr for future implementations * fixing the changes requested (remove private, explicit)
This commit is contained in:
parent
961cfda2a4
commit
564b91d219
12 changed files with 309 additions and 5 deletions
23
src/core/hle/service/audio/codecctl.h
Normal file
23
src/core/hle/service/audio/codecctl.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2018 yuzu emulator team
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Kernel {
|
||||
class HLERequestContext;
|
||||
}
|
||||
|
||||
namespace Service {
|
||||
namespace Audio {
|
||||
|
||||
class CodecCtl final : public ServiceFramework<CodecCtl> {
|
||||
public:
|
||||
explicit CodecCtl();
|
||||
~CodecCtl() = default;
|
||||
};
|
||||
|
||||
} // namespace Audio
|
||||
} // namespace Service
|
Loading…
Add table
Add a link
Reference in a new issue