mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-05 20:28:40 +01:00
![Lioncash](/assets/img/avatar_default.png)
Also changes some function params, but this is ok. Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
11 lines
249 B
C++
11 lines
249 B
C++
// 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);
|