2022-09-11 06:21:12 +00: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 20:24:36 +00:00
|
|
|
#include "UpdaterCommon/UpdaterCommon.h"
|
2022-09-11 06:21:12 +00:00
|
|
|
|
2022-10-27 20:24:36 +00:00
|
|
|
namespace Platform
|
2022-09-11 06:21:12 +00:00
|
|
|
{
|
2022-10-27 20:24:36 +00:00
|
|
|
bool VersionCheck(const std::vector<TodoList::UpdateOp>& to_update,
|
2023-03-10 02:18:09 +00:00
|
|
|
const std::string& install_base_path, const std::string& temp_dir);
|
2022-09-11 06:21:12 +00:00
|
|
|
} // namespace Platform
|