Header include changes

This commit is contained in:
twinaphex 2016-03-22 02:45:25 +01:00
parent 1303a310e8
commit 61bae588fb
10 changed files with 28 additions and 25 deletions

View File

@ -26,7 +26,8 @@
#include "../command_event.h"
#include "../configuration.h"
#include "../general.h"
#include "../retroarch.h"
#include "../runloop.h"
#include "../performance.h"
#include "../verbosity.h"
#include "../list_special.h"

View File

@ -18,7 +18,9 @@
#include "camera_driver.h"
#include "../general.h"
#include "../configuration.h"
#include "../retroarch.h"
#include "../runloop.h"
#include "../list_special.h"
#include "../verbosity.h"

View File

@ -33,21 +33,4 @@
#define PACKAGE_VERSION "1.3.3"
#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

View File

@ -27,7 +27,8 @@
#include "video_context_driver.h"
#include "../record/record_driver.h"
#include "../config.def.h"
#include "../general.h"
#include "../retroarch.h"
#include "../runloop.h"
#include "../performance.h"
#include "../list_special.h"
#include "../libretro_version_1.h"

View File

@ -16,9 +16,12 @@
#include <string.h>
#include "input_driver.h"
#include "input_remapping.h"
#include "../general.h"
#include "../retroarch.h"
#include "../runloop.h"
#include "../movie.h"
#include "../list_special.h"
#include "../verbosity.h"

View File

@ -18,7 +18,9 @@
#include "location_driver.h"
#include "../general.h"
#include "../configuration.h"
#include "../retroarch.h"
#include "../runloop.h"
#include "../system.h"
#include "../list_special.h"
#include "../verbosity.h"

View File

@ -29,7 +29,7 @@
#include "../content.h"
#include "../core_info.h"
#include "../general.h"
#include "../retroarch.h"
#include "../system.h"
#include "../defaults.h"
#include "../frontend/frontend.h"

View File

@ -21,10 +21,12 @@
#include <rhash.h>
#include <retro_endianness.h>
#include "configuration.h"
#include "movie.h"
#include "libretro_version_1.h"
#include "content.h"
#include "general.h"
#include "retroarch.h"
#include "runloop.h"
#include "msg_hash.h"
#include "verbosity.h"

View File

@ -37,7 +37,7 @@ typedef struct bsv_movie bsv_movie_t;
enum rarch_movie_type
{
RARCH_MOVIE_PLAYBACK,
RARCH_MOVIE_PLAYBACK = 0,
RARCH_MOVIE_RECORD
};

View File

@ -173,6 +173,15 @@ const char *rarch_get_current_savefile_dir(void);
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
}
#endif