diff options
| author | mailwl <mailwl@gmail.com> | 2018-06-25 16:44:17 +0300 |
|---|---|---|
| committer | mailwl <mailwl@gmail.com> | 2018-06-25 16:44:17 +0300 |
| commit | 11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b (patch) | |
| tree | b9356a455e79ab92efef475b5710b81dcfac747c /src/core/hle/service/audio/hwopus.h | |
| parent | 838724c588c5343422b1736ba73c4f309feaca00 (diff) | |
Service/Audio: add hwopus service, stub GetWorkBufferSize function
Diffstat (limited to 'src/core/hle/service/audio/hwopus.h')
| -rw-r--r-- | src/core/hle/service/audio/hwopus.h | 20 |
1 files changed, 20 insertions, 0 deletions
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<HwOpus> { +public: + explicit HwOpus(); + ~HwOpus() = default; + +private: + void GetWorkBufferSize(Kernel::HLERequestContext& ctx); +}; + +} // namespace Service::Audio |
