From 11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b Mon Sep 17 00:00:00 2001 From: mailwl Date: Mon, 25 Jun 2018 16:44:17 +0300 Subject: Service/Audio: add hwopus service, stub GetWorkBufferSize function --- src/core/hle/service/audio/hwopus.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/core/hle/service/audio/hwopus.h (limited to 'src/core/hle/service/audio/hwopus.h') diff --git a/src/core/hle/service/audio/hwopus.h b/src/core/hle/service/audio/hwopus.h new file mode 100644 index 000000000..090b8c825 --- /dev/null +++ b/src/core/hle/service/audio/hwopus.h @@ -0,0 +1,20 @@ +// 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 Service::Audio { + +class HwOpus final : public ServiceFramework { +public: + explicit HwOpus(); + ~HwOpus() = default; + +private: + void GetWorkBufferSize(Kernel::HLERequestContext& ctx); +}; + +} // namespace Service::Audio -- cgit v1.2.3