flipper_format_i.h 356 B

12345678910111213141516171819
  1. #pragma once
  2. #include <toolbox/stream/stream.h>
  3. #include "flipper_format.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /**
  8. * Returns the underlying stream instance.
  9. * Use only if you know what you are doing.
  10. * @param flipper_format
  11. * @return Stream*
  12. */
  13. Stream* flipper_format_get_raw_stream(FlipperFormat* flipper_format);
  14. #ifdef __cplusplus
  15. }
  16. #endif