mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
70 lines
1.8 KiB
C
70 lines
1.8 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef COMMON_TASKS_H
|
|
#define COMMON_TASKS_H
|
|
|
|
#include <stdint.h>
|
|
#include <boolean.h>
|
|
#include "../runloop_data.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef HAVE_NETWORKING
|
|
/**
|
|
* rarch_main_data_http_iterate_transfer:
|
|
*
|
|
* Resumes HTTP transfer update.
|
|
*
|
|
* Returns: 0 when finished, -1 when we should continue
|
|
* with the transfer on the next frame.
|
|
**/
|
|
void rarch_main_data_http_iterate(bool is_thread,
|
|
void *data);
|
|
#endif
|
|
|
|
#ifdef HAVE_RPNG
|
|
void rarch_main_data_nbio_image_iterate(bool is_thread,
|
|
void *data);
|
|
void rarch_main_data_nbio_image_upload_iterate(bool is_thread,
|
|
void *data);
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBRETRODB
|
|
#ifdef HAVE_MENU
|
|
void rarch_main_data_db_iterate(bool is_thread, void *data);
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_OVERLAY
|
|
void rarch_main_data_overlay_image_upload_iterate(bool is_thread,
|
|
void *data);
|
|
|
|
void rarch_main_data_overlay_iterate(bool is_thread, void *data);
|
|
#endif
|
|
|
|
void rarch_main_data_nbio_iterate(bool is_thread,
|
|
void *runloop);
|
|
|
|
void data_runloop_osd_msg(const char *msg, size_t sizeof_msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|