mirror of
https://github.com/libretro/RetroArch
synced 2025-03-30 07:20:36 +00:00
Rename file.c/file.h to content.c/content.h
This commit is contained in:
parent
2c5b744bc4
commit
d3629f06f1
@ -91,7 +91,7 @@ OBJ += frontend/frontend.o \
|
||||
libretro_version_1.o \
|
||||
retroarch.o \
|
||||
runloop.o \
|
||||
file.o \
|
||||
content.o \
|
||||
libretro-sdk/file/file_list.o \
|
||||
dir_list.o \
|
||||
libretro-sdk/string/string_list.o \
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include <compat/strl.h>
|
||||
#include <compat/posix_string.h>
|
||||
#include <compat/msvc.h>
|
||||
#include "../file.h"
|
||||
#include "../file_path.h"
|
||||
#include "../general.h"
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "file.h"
|
||||
#include "content.h"
|
||||
#include "file_path.h"
|
||||
#include "rarch_file_path.h"
|
||||
#include "general.h"
|
@ -19,7 +19,6 @@
|
||||
#define CORE_INFO_H_
|
||||
|
||||
#include "conf/config_file.h"
|
||||
#include "file.h"
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -16,7 +16,6 @@
|
||||
#include "core_options.h"
|
||||
#include <string.h>
|
||||
#include "conf/config_file.h"
|
||||
#include "file.h"
|
||||
#include "dir_list.h"
|
||||
#include <compat/posix_string.h>
|
||||
#include <compat/strl.h>
|
||||
|
1
driver.c
1
driver.c
@ -17,7 +17,6 @@
|
||||
|
||||
#include "driver.h"
|
||||
#include "general.h"
|
||||
#include "file.h"
|
||||
#include "libretro.h"
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
@ -14,7 +14,6 @@
|
||||
*/
|
||||
|
||||
#include "fonts.h"
|
||||
#include "../../file.h"
|
||||
#include "../../file_path.h"
|
||||
#include "../../general.h"
|
||||
#include <string.h>
|
||||
|
1
gfx/gl.c
1
gfx/gl.c
@ -23,7 +23,6 @@
|
||||
#include "../performance.h"
|
||||
#include "scaler/scaler.h"
|
||||
#include "image/image.h"
|
||||
#include "../file.h"
|
||||
|
||||
#include <stdint.h>
|
||||
#include "../libretro.h"
|
||||
|
@ -18,7 +18,6 @@
|
||||
#endif
|
||||
|
||||
#include "image.h"
|
||||
#include "../../file.h"
|
||||
#include "../../rarch_file_path.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <compat/strl.h>
|
||||
#include <compat/posix_string.h>
|
||||
#include "../../input/input_common.h"
|
||||
#include "../../file.h"
|
||||
#include "../../rarch_file_path.h"
|
||||
|
||||
static PyObject* py_read_wram(PyObject *self, PyObject *args)
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include <compat/posix_string.h>
|
||||
#include "../../conf/config_file.h"
|
||||
#include "../../dynamic.h"
|
||||
#include "../../file.h"
|
||||
#include "../../file_path.h"
|
||||
|
||||
#include "../state_tracker.h"
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include <compat/posix_string.h>
|
||||
#include "../state_tracker.h"
|
||||
#include "../../dynamic.h"
|
||||
#include "../../file.h"
|
||||
#include "../../rarch_file_path.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include <compat/posix_string.h>
|
||||
#include "../state_tracker.h"
|
||||
#include "../../dynamic.h"
|
||||
#include "../../file.h"
|
||||
#include "../math/matrix.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
@ -19,7 +19,6 @@
|
||||
#include <compat/posix_string.h>
|
||||
#include <compat/msvc.h>
|
||||
#include <compat/strl.h>
|
||||
#include "../../file.h"
|
||||
#include "../../file_path.h"
|
||||
#include "../../general.h"
|
||||
|
||||
|
@ -519,7 +519,7 @@ DYNAMIC
|
||||
/*============================================================
|
||||
FILE
|
||||
============================================================ */
|
||||
#include "../file.c"
|
||||
#include "../content.c"
|
||||
#include "../file_path.c"
|
||||
#include "../dir_list.c"
|
||||
#include "../libretro-sdk/string/string_list.c"
|
||||
|
@ -48,7 +48,6 @@
|
||||
#include <linux/kd.h>
|
||||
#endif
|
||||
|
||||
#include "../file.h"
|
||||
|
||||
rarch_joypad_driver_t *joypad_drivers[] = {
|
||||
#ifdef __CELLOS_LV2__
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include "../conf/config_file.h"
|
||||
#include <compat/posix_string.h>
|
||||
#include "input_common.h"
|
||||
#include "../file.h"
|
||||
#include "../file_path.h"
|
||||
#include <stddef.h>
|
||||
#include <math.h>
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include "content.h"
|
||||
#include "rarch_file_path.h"
|
||||
#include "dir_list.h"
|
||||
#include "general.h"
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include "general.h"
|
||||
#include "file.h"
|
||||
#include "file_path.h"
|
||||
#include "gfx/scaler/scaler.h"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user