22 lines
338 B
C
22 lines
338 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);
|
||
|
} SdCard_Api;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|