WiiUpdate.h 347 B

123456789101112131415
  1. // Copyright 2017 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <string>
  5. class QWidget;
  6. namespace WiiUpdate
  7. {
  8. void PerformOnlineUpdate(const std::string& region, QWidget* parent = nullptr);
  9. void PerformDiscUpdate(const std::string& file_path, QWidget* parent = nullptr);
  10. } // namespace WiiUpdate