Header cleanups

This commit is contained in:
twinaphex 2016-06-20 06:34:30 +02:00
parent 4622d46ad3
commit 2ebd6e6f49
5 changed files with 9 additions and 3 deletions

View File

@ -27,6 +27,7 @@
#include "menu_shader.h"
#include "../content.h"
#include "../configuration.h"
#include "../dynamic.h"
#include "../core_info.h"
#include "../retroarch.h"
@ -36,6 +37,7 @@
#include "../list_special.h"
#include "../tasks/tasks_internal.h"
#include "../ui/ui_companion_driver.h"
#include "../runloop.h"
#include "../verbosity.h"
static const menu_ctx_driver_t *menu_ctx_drivers[] = {

View File

@ -127,8 +127,6 @@ enum runloop_ctl_state
RUNLOOP_CTL_SYSTEM_INFO_FREE
};
typedef int (*transfer_cb_t)(void *data, size_t len);
typedef struct rarch_dir_list rarch_dir_list_t;
typedef struct rarch_dir

View File

@ -31,6 +31,7 @@
#include "../list_special.h"
#include "../msg_hash.h"
#include "../playlist.h"
#include "../runloop.h"
#include "../verbosity.h"
#define CB_DB_SCAN_FILE 0x70ce56d2U

View File

@ -31,7 +31,9 @@
#include <file/file_path.h>
#include "../core.h"
#include "../configuration.h"
#include "../msg_hash.h"
#include "../runloop.h"
#include "../verbosity.h"
#include "tasks_internal.h"

View File

@ -23,13 +23,15 @@
#include <queues/message_queue.h>
#include <queues/task_queue.h>
#include <formats/image.h>
#include "../content.h"
#include "../core_type.h"
#include "../runloop.h"
RETRO_BEGIN_DECLS
typedef int (*transfer_cb_t)(void *data, size_t len);
enum content_mode_load
{
CONTENT_MODE_LOAD_NONE = 0,
@ -75,6 +77,7 @@ typedef struct nbio_handle
unsigned status;
} nbio_handle_t;
#ifdef HAVE_NETWORKING
void *task_push_http_transfer(const char *url, bool mute, const char *type,
retro_task_callback_t cb, void *userdata);