Expose storage_get_data

This commit is contained in:
Willy-JL
2023-03-29 12:19:01 +01:00
parent 5349c1bbca
commit 2b9c6e9d9c
2 changed files with 3 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ static void storage_path_change_to_real_storage(FuriString* path, StorageType re
}
}
static FS_Error storage_get_data(Storage* app, FuriString* path, StorageData** storage) {
FS_Error storage_get_data(Storage* app, FuriString* path, StorageData** storage) {
StorageType type = storage_get_type_by_path(path);
if(storage_type_is_valid(type)) {

View File

@@ -9,6 +9,8 @@
extern "C" {
#endif
FS_Error storage_get_data(Storage* app, FuriString* path, StorageData** storage);
void storage_process_message(Storage* app, StorageMessage* message);
#ifdef __cplusplus