Files
eden/src/core/hle/service/audio/codecctl.h
T

22 lines
406 B
C++
Raw Normal View History

2018-01-21 19:03:36 -08: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;
}
namespace Service::Audio {
2018-01-21 19:03:36 -08:00
class CodecCtl final : public ServiceFramework<CodecCtl> {
public:
explicit CodecCtl();
~CodecCtl() override;
2018-01-21 19:03:36 -08:00
};
} // namespace Service::Audio