mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-24 23:46:56 -05: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
|
|
|
|
/** @} */
|