 769ab2aef2
			
		
	
	
		769ab2aef2
		
			
		
	
	
	
	
		
			
			* [FL-1489] IRDA: move to FileWorker, fixes * Use FileWorker * Use file_select to select remotes * Fix some crashes * Add RAW parsing restrictions * Remove excess scene (LearnDoneAfter) * Move all file system logic to standalone object
		
			
				
	
	
		
			26 lines
		
	
	
		
			483 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			483 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include <furi.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct SdApp SdApp;
 | |
| 
 | |
| typedef struct {
 | |
|     SdApp* context;
 | |
|     bool (*file_select)(
 | |
|         SdApp* context,
 | |
|         const char* path,
 | |
|         const char* extension,
 | |
|         char* result,
 | |
|         uint8_t result_size,
 | |
|         const char* selected_filename);
 | |
|     void (*check_error)(SdApp* context);
 | |
|     void (*show_error)(SdApp* context, const char* error_text);
 | |
| } SdCard_Api;
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |