mirror of
https://github.com/wiiu-env/SDHotSwapModule.git
synced 2024-11-14 15:45:17 +01:00
27 lines
498 B
C
27 lines
498 B
C
#pragma once
|
|
|
|
int InitialSDCheck();
|
|
|
|
void DeInitSDCheck();
|
|
|
|
/**
|
|
* @return < 0 on error.
|
|
* 0 when no FAT32 formatted sd card is inserted
|
|
* 1 when a FAT32 formatted sd card is inserted
|
|
*/
|
|
|
|
int IsSDCardInserted();
|
|
|
|
/**
|
|
* @return < 0 on error.
|
|
* 0 when mounting failed,
|
|
* 1 when mounting was successful.
|
|
*/
|
|
int MountSDCard();
|
|
|
|
/**
|
|
* @return < 0 on error.
|
|
* 0 when unmounting failed,
|
|
* 1 when unmounting was successful.
|
|
*/
|
|
int UnmountSDCard(); |