mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
19 lines
352 B
C
19 lines
352 B
C
#pragma once
|
|
#include <furi.h>
|
|
#include "storage.h"
|
|
#include "storage_i.h"
|
|
#include "storage_message.h"
|
|
#include "storage_glue.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
FS_Error storage_get_data(Storage* app, FuriString* path, StorageData** storage);
|
|
|
|
void storage_process_message(Storage* app, StorageMessage* message);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|