mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 16:20:39 +00:00
Move struct to content.c
This commit is contained in:
parent
e3802c499f
commit
07101f48d3
@ -90,6 +90,14 @@ struct sram_block
|
|||||||
size_t size;
|
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 const struct file_archive_file_backend *stream_backend = NULL;
|
||||||
static struct string_list *temporary_content = NULL;
|
static struct string_list *temporary_content = NULL;
|
||||||
static bool _content_is_inited = false;
|
static bool _content_is_inited = false;
|
||||||
|
@ -36,14 +36,6 @@ typedef struct ram_type
|
|||||||
int type;
|
int type;
|
||||||
} ram_type_t;
|
} 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
|
typedef struct content_ctx_info
|
||||||
{
|
{
|
||||||
int argc; /* Argument count. */
|
int argc; /* Argument count. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user