mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-21 18:21:51 +00:00
Header include changes
This commit is contained in:
parent
1303a310e8
commit
61bae588fb
@ -26,7 +26,8 @@
|
|||||||
|
|
||||||
#include "../command_event.h"
|
#include "../command_event.h"
|
||||||
#include "../configuration.h"
|
#include "../configuration.h"
|
||||||
#include "../general.h"
|
#include "../retroarch.h"
|
||||||
|
#include "../runloop.h"
|
||||||
#include "../performance.h"
|
#include "../performance.h"
|
||||||
#include "../verbosity.h"
|
#include "../verbosity.h"
|
||||||
#include "../list_special.h"
|
#include "../list_special.h"
|
||||||
|
@ -18,7 +18,9 @@
|
|||||||
|
|
||||||
#include "camera_driver.h"
|
#include "camera_driver.h"
|
||||||
|
|
||||||
#include "../general.h"
|
#include "../configuration.h"
|
||||||
|
#include "../retroarch.h"
|
||||||
|
#include "../runloop.h"
|
||||||
#include "../list_special.h"
|
#include "../list_special.h"
|
||||||
#include "../verbosity.h"
|
#include "../verbosity.h"
|
||||||
|
|
||||||
|
17
general.h
17
general.h
@ -33,21 +33,4 @@
|
|||||||
#define PACKAGE_VERSION "1.3.3"
|
#define PACKAGE_VERSION "1.3.3"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
|
||||||
* retro_fail:
|
|
||||||
* @error_code : Error code.
|
|
||||||
* @error : Error message to show.
|
|
||||||
*
|
|
||||||
* Sanely kills the program.
|
|
||||||
**/
|
|
||||||
void retro_fail(int error_code, const char *error);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -27,7 +27,8 @@
|
|||||||
#include "video_context_driver.h"
|
#include "video_context_driver.h"
|
||||||
#include "../record/record_driver.h"
|
#include "../record/record_driver.h"
|
||||||
#include "../config.def.h"
|
#include "../config.def.h"
|
||||||
#include "../general.h"
|
#include "../retroarch.h"
|
||||||
|
#include "../runloop.h"
|
||||||
#include "../performance.h"
|
#include "../performance.h"
|
||||||
#include "../list_special.h"
|
#include "../list_special.h"
|
||||||
#include "../libretro_version_1.h"
|
#include "../libretro_version_1.h"
|
||||||
|
@ -16,9 +16,12 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "input_driver.h"
|
||||||
|
|
||||||
#include "input_remapping.h"
|
#include "input_remapping.h"
|
||||||
|
|
||||||
#include "../general.h"
|
#include "../retroarch.h"
|
||||||
|
#include "../runloop.h"
|
||||||
#include "../movie.h"
|
#include "../movie.h"
|
||||||
#include "../list_special.h"
|
#include "../list_special.h"
|
||||||
#include "../verbosity.h"
|
#include "../verbosity.h"
|
||||||
|
@ -18,7 +18,9 @@
|
|||||||
|
|
||||||
#include "location_driver.h"
|
#include "location_driver.h"
|
||||||
|
|
||||||
#include "../general.h"
|
#include "../configuration.h"
|
||||||
|
#include "../retroarch.h"
|
||||||
|
#include "../runloop.h"
|
||||||
#include "../system.h"
|
#include "../system.h"
|
||||||
#include "../list_special.h"
|
#include "../list_special.h"
|
||||||
#include "../verbosity.h"
|
#include "../verbosity.h"
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
#include "../content.h"
|
#include "../content.h"
|
||||||
#include "../core_info.h"
|
#include "../core_info.h"
|
||||||
#include "../general.h"
|
#include "../retroarch.h"
|
||||||
#include "../system.h"
|
#include "../system.h"
|
||||||
#include "../defaults.h"
|
#include "../defaults.h"
|
||||||
#include "../frontend/frontend.h"
|
#include "../frontend/frontend.h"
|
||||||
|
4
movie.c
4
movie.c
@ -21,10 +21,12 @@
|
|||||||
#include <rhash.h>
|
#include <rhash.h>
|
||||||
#include <retro_endianness.h>
|
#include <retro_endianness.h>
|
||||||
|
|
||||||
|
#include "configuration.h"
|
||||||
#include "movie.h"
|
#include "movie.h"
|
||||||
#include "libretro_version_1.h"
|
#include "libretro_version_1.h"
|
||||||
#include "content.h"
|
#include "content.h"
|
||||||
#include "general.h"
|
#include "retroarch.h"
|
||||||
|
#include "runloop.h"
|
||||||
#include "msg_hash.h"
|
#include "msg_hash.h"
|
||||||
#include "verbosity.h"
|
#include "verbosity.h"
|
||||||
|
|
||||||
|
2
movie.h
2
movie.h
@ -37,7 +37,7 @@ typedef struct bsv_movie bsv_movie_t;
|
|||||||
|
|
||||||
enum rarch_movie_type
|
enum rarch_movie_type
|
||||||
{
|
{
|
||||||
RARCH_MOVIE_PLAYBACK,
|
RARCH_MOVIE_PLAYBACK = 0,
|
||||||
RARCH_MOVIE_RECORD
|
RARCH_MOVIE_RECORD
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -173,6 +173,15 @@ const char *rarch_get_current_savefile_dir(void);
|
|||||||
|
|
||||||
bool rarch_game_options_validate(char *s, size_t len, bool mkdir);
|
bool rarch_game_options_validate(char *s, size_t len, bool mkdir);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* retro_fail:
|
||||||
|
* @error_code : Error code.
|
||||||
|
* @error : Error message to show.
|
||||||
|
*
|
||||||
|
* Sanely kills the program.
|
||||||
|
**/
|
||||||
|
void retro_fail(int error_code, const char *error);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user