Service/Audio: add hwopus service, stub GetWorkBufferSize function

This commit is contained in:
mailwl 2018-06-25 16:44:17 +03:00
parent 1a6e4c3a2e
commit 5ffac05099
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