Platform.h 464 B

1234567891011121314151617181920
  1. // Copyright 2018 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <map>
  5. #include <optional>
  6. #include <sstream>
  7. #include "Common/CommonTypes.h"
  8. #include "Common/StringUtil.h"
  9. #include "UpdaterCommon/UpdaterCommon.h"
  10. namespace Platform
  11. {
  12. bool VersionCheck(const std::vector<TodoList::UpdateOp>& to_update,
  13. const std::string& install_base_path, const std::string& temp_dir);
  14. } // namespace Platform