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
478 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 20:24:36 +00:00
#include "UpdaterCommon/UpdaterCommon.h"
2022-10-27 20:24:36 +00:00
namespace Platform
{
2022-10-27 20:24:36 +00:00
bool VersionCheck(const std::vector<TodoList::UpdateOp>& to_update,
const std::string& install_base_path, const std::string& temp_dir, FILE* log_fp);
} // namespace Platform