2017-06-14 09:58:11 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-14 09:58:11 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class QWidget;
|
|
|
|
|
|
|
|
namespace WiiUpdate
|
|
|
|
{
|
|
|
|
void PerformOnlineUpdate(const std::string& region, QWidget* parent = nullptr);
|
2017-07-04 16:45:37 +00:00
|
|
|
void PerformDiscUpdate(const std::string& file_path, QWidget* parent = nullptr);
|
2017-07-30 19:56:12 +00:00
|
|
|
} // namespace WiiUpdate
|