2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-04-22 11:06:26 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-04-22 11:06:26 -06:00
|
|
|
|
2014-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-04-22 11:06:26 -06:00
|
|
|
|
2018-05-11 07:16:30 -06:00
|
|
|
namespace Common
|
|
|
|
{
|
2014-03-12 13:33:41 -06:00
|
|
|
bool SDCardCreate(u64 disk_size /*in MB*/, const std::string& filename);
|
2018-05-11 07:16:30 -06:00
|
|
|
} // namespace Common
|