15 lines
272 B
C
15 lines
272 B
C
|
// Copyright 2017 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
// Small utility functions for common Wii related tasks.
|
||
|
|
||
|
namespace WiiUtils
|
||
|
{
|
||
|
bool InstallWAD(const std::string& wad_path);
|
||
|
}
|