2018-01-22 03:03:36 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Audio {
|
2018-01-22 03:03:36 +00:00
|
|
|
|
|
|
|
class CodecCtl final : public ServiceFramework<CodecCtl> {
|
|
|
|
public:
|
|
|
|
explicit CodecCtl();
|
|
|
|
~CodecCtl() = default;
|
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Audio
|