Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flipper_format_i.h « flipper_format « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a47d413146da8ceccd7f5c6c5bf488fd05f20dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include <toolbox/stream/stream.h>
#include "flipper_format.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Returns the underlying stream instance.
 * Use only if you know what you are doing.
 * @param flipper_format 
 * @return Stream* 
 */
Stream* flipper_format_get_raw_stream(FlipperFormat* flipper_format);

#ifdef __cplusplus
}
#endif