* Storage: count opened files * Storage: sd mount * Storage: prompt to mount SD card if not mounted * F18: update API * F18: update API version * Fix logger naming scheme * Storage: storage_files_count -> storage_open_files_count Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			421 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			421 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_mount_card(StorageData* storage, bool notify);
 | 
						|
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
 |