dolphin/Source/Core/UpdaterCommon/Platform.h

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 22:24:36 +02:00
#include "UpdaterCommon/UpdaterCommon.h"
2022-10-27 22:24:36 +02:00
namespace Platform
{
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);
} // namespace Platform