mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 18:41:52 +01:00
28 lines
262 B
C
28 lines
262 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup whb_sdcard SDCard Access
|
||
|
* \ingroup whb
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
BOOL
|
||
|
WHBMountSdCard();
|
||
|
|
||
|
char *
|
||
|
WHBGetSdCardMountPath();
|
||
|
|
||
|
BOOL
|
||
|
WHBUnmountSdCard();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|