suyu/src/core/hle/service/vi/vi_m.h

24 lines
446 B
C
Raw Normal View History

// Copyright 2018 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include "core/hle/service/service.h"
namespace Service {
namespace VI {
class VI_M final : public ServiceFramework<VI_M> {
public:
VI_M();
~VI_M() = default;
private:
void GetDisplayService(Kernel::HLERequestContext& ctx);
};
} // namespace VI
} // namespace Service