Service/Audio: add hwopus service, stub GetWorkBufferSize function

This commit is contained in:
mailwl
2018-06-25 16:44:17 +03:00
parent 838724c588
commit 11fb17054e
4 changed files with 53 additions and 0 deletions

View File

@ -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<HwOpus> {
public:
explicit HwOpus();
~HwOpus() = default;
private:
void GetWorkBufferSize(Kernel::HLERequestContext& ctx);
};
} // namespace Service::Audio