2022-09-11 08:21:12 +02:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <optional>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
|
2022-10-27 22:24:36 +02:00
|
|
|
#include "UpdaterCommon/UpdaterCommon.h"
|
2022-09-11 08:21:12 +02:00
|
|
|
|
2022-10-27 22:24:36 +02:00
|
|
|
namespace Platform
|
2022-09-11 08:21:12 +02:00
|
|
|
{
|
2022-10-27 22:24:36 +02:00
|
|
|
bool VersionCheck(const std::vector<TodoList::UpdateOp>& to_update,
|
2023-03-10 03:18:09 +01:00
|
|
|
const std::string& install_base_path, const std::string& temp_dir);
|
2022-09-11 08:21:12 +02:00
|
|
|
} // namespace Platform
|