RetroArch/runloop_data.h

60 lines
1.5 KiB
C
Raw Normal View History

2015-03-24 12:45:53 +00:00
/* 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 __RETROARCH_DATA_RUNLOOP_H
#define __RETROARCH_DATA_RUNLOOP_H
2015-06-02 15:17:46 +00:00
#include <retro_miscellaneous.h>
2015-03-24 12:45:53 +00:00
#ifdef __cplusplus
extern "C" {
#endif
typedef int (*transfer_cb_t)(void *data, size_t len);
2015-05-05 07:50:00 +00:00
2015-03-24 12:45:53 +00:00
enum runloop_data_type
{
DATA_TYPE_NONE = 0,
DATA_TYPE_FILE,
DATA_TYPE_IMAGE,
DATA_TYPE_HTTP,
DATA_TYPE_OVERLAY,
2015-06-26 14:04:42 +00:00
DATA_TYPE_DB
2015-03-24 12:45:53 +00:00
};
void rarch_main_data_msg_queue_push(unsigned type,
const char *msg, const char *msg2,
unsigned prio, unsigned duration, bool flush);
void rarch_main_data_clear_state(void);
void rarch_main_data_iterate(void);
void rarch_main_data_deinit(void);
void rarch_main_data_free(void);
void rarch_main_data_init_queues(void);
void rarch_main_data_init(void);
2015-07-08 22:01:55 +00:00
bool rarch_main_data_active(void);
2015-03-24 12:45:53 +00:00
#ifdef __cplusplus
}
#endif
#endif