wut/libraries/libwhb/include/whb/sdcard.h

28 lines
262 B
C
Raw Normal View History

2018-05-23 12:10:10 +02:00
#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
/** @} */