// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "core/hle/service/cmif_types.h" #include "core/hle/service/service.h" namespace Service::NS { class IReadOnlyApplicationRecordInterface final : public ServiceFramework { public: explicit IReadOnlyApplicationRecordInterface(Core::System& system_); ~IReadOnlyApplicationRecordInterface() override; private: Result HasApplicationRecord(Out out_has_application_record, u64 program_id); Result IsDataCorruptedResult(Out out_is_data_corrupted_result, Result result); }; } // namespace Service::NS