// SPDX-License-Identifier: MPL-2.0 // Copyright © 2021 Skyline Team and Contributors (https://github.com/skyline-emu/) #pragma once #include "IRootService.h" namespace skyline::service::visrv { /** * @url https://switchbrew.org/wiki/Display_services#vi:s */ class ISystemRootService : public IRootService { public: ISystemRootService(const DeviceState &state, ServiceManager &manager) : IRootService(state, manager, PrivilegeLevel::System) {} SERVICE_DECL( SFUNC_BASE(0x3, ISystemRootService, IRootService, GetDisplayService) ) }; }