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

21 lines
398 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-01-21 19:03:36 -08:00
#pragma once
#include "core/hle/service/service.h"
namespace Core {
class System;
2018-01-21 19:03:36 -08:00
}
namespace Service::Audio {
2018-01-21 19:03:36 -08:00
class CodecCtl final : public ServiceFramework<CodecCtl> {
public:
explicit CodecCtl(Core::System& system_);
~CodecCtl() override;
2018-01-21 19:03:36 -08:00
};
} // namespace Service::Audio