Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
464 B
C
Raw Normal View History

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