mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Cleanups
This commit is contained in:
parent
7c4fcb4960
commit
cfd7228469
2 changed files with 10 additions and 9 deletions
|
@ -26,6 +26,14 @@
|
|||
|
||||
RETRO_BEGIN_DECLS
|
||||
|
||||
enum nbio_status_enum
|
||||
{
|
||||
NBIO_STATUS_INIT = 0,
|
||||
NBIO_STATUS_TRANSFER,
|
||||
NBIO_STATUS_TRANSFER_PARSE,
|
||||
NBIO_STATUS_TRANSFER_FINISHED
|
||||
};
|
||||
|
||||
enum nbio_type
|
||||
{
|
||||
NBIO_TYPE_NONE = 0,
|
||||
|
|
|
@ -43,14 +43,6 @@ enum content_mode_load
|
|||
CONTENT_MODE_LOAD_CONTENT_WITH_IMAGEVIEWER_CORE_FROM_MENU
|
||||
};
|
||||
|
||||
enum nbio_status_enum
|
||||
{
|
||||
NBIO_STATUS_INIT = 0,
|
||||
NBIO_STATUS_TRANSFER,
|
||||
NBIO_STATUS_TRANSFER_PARSE,
|
||||
NBIO_STATUS_TRANSFER_FINISHED
|
||||
};
|
||||
|
||||
#ifdef HAVE_NETWORKING
|
||||
typedef struct
|
||||
{
|
||||
|
@ -182,7 +174,8 @@ void task_file_load_handler(retro_task_t *task);
|
|||
|
||||
bool task_audio_mixer_load_handler(retro_task_t *task);
|
||||
|
||||
bool take_screenshot(const char *path, bool silence, bool has_valid_framebuffer, bool fullpath, bool use_thread);
|
||||
bool take_screenshot(const char *path, bool silence,
|
||||
bool has_valid_framebuffer, bool fullpath, bool use_thread);
|
||||
|
||||
bool event_load_save_files(void);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue