diff --git a/content.c b/content.c index 2873230cef..7804333047 100644 --- a/content.c +++ b/content.c @@ -90,6 +90,14 @@ struct sram_block size_t size; }; +typedef struct content_stream +{ + uint32_t a; + const uint8_t *b; + size_t c; + uint32_t crc; +} content_stream_t; + static const struct file_archive_file_backend *stream_backend = NULL; static struct string_list *temporary_content = NULL; static bool _content_is_inited = false; diff --git a/content.h b/content.h index e02ee8f692..13118f67f9 100644 --- a/content.h +++ b/content.h @@ -36,14 +36,6 @@ typedef struct ram_type int type; } ram_type_t; -typedef struct content_stream -{ - uint32_t a; - const uint8_t *b; - size_t c; - uint32_t crc; -} content_stream_t; - typedef struct content_ctx_info { int argc; /* Argument count. */