blob: 5cc234fddbbdaef8504ad379ebd17d27d2c785dc (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <string>
#include "Common/CommonTypes.h"
bool SDCardCreate(u64 disk_size /*in MB*/, const std::string& filename);
|