From 07101f48d32f6b3286af4e00ceebaa5b40512f90 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 11 May 2016 21:41:19 +0200 Subject: [PATCH] Move struct to content.c --- content.c | 8 ++++++++ content.h | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) 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. */