Move compressed_file_list_new to file_extract.h

This commit is contained in:
twinaphex 2015-01-16 01:37:34 +01:00
parent f974df6854
commit c864677b12
4 changed files with 5 additions and 3 deletions

View File

@ -85,5 +85,8 @@ struct string_list *zlib_get_file_list(const char *path);
bool zlib_inflate_data_to_file(const char *path, const uint8_t *data,
uint32_t csize, uint32_t size, uint32_t crc32);
struct string_list *compressed_file_list_new(const char *filename,
const char* ext);
#endif

View File

@ -39,9 +39,6 @@ bool read_file_string(const char *path, char **buf);
bool write_file(const char *path, const void *buf, size_t size);
struct string_list *compressed_file_list_new(const char *filename,
const char* ext);
#ifdef __cplusplus
}
#endif

View File

@ -17,6 +17,7 @@
#include "menu_entries.h"
#include <file/file_list.h>
#include <file/file_path.h>
#include "../file_extract.h"
#include "../file_ops.h"
#include <file/dir_list.h>

View File

@ -22,6 +22,7 @@
#include "menu_shader.h"
#include "../file_ext.h"
#include "../file_extract.h"
#include "../config.def.h"
#include "../cheats.h"
#include "../retroarch.h"