16 lines
361 B
C
16 lines
361 B
C
|
#pragma once
|
||
|
#include <furi.h>
|
||
|
#include "../storage-glue.h"
|
||
|
#include "../storage-sd-api.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void storage_ext_init(StorageData* storage);
|
||
|
FS_Error sd_unmount_card(StorageData* storage);
|
||
|
FS_Error sd_format_card(StorageData* storage);
|
||
|
FS_Error sd_card_info(StorageData* storage, SDInfo* sd_info);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|