RetroArch/runahead/secondary_core.h

25 lines
587 B
C
Raw Normal View History

2018-03-28 19:22:07 +00:00
#ifndef __SECONDARY_CORE_H__
#define __SECONDARY_CORE_H__
2018-04-08 18:25:43 +00:00
#include <stddef.h>
#include <boolean.h>
2018-04-08 18:25:43 +00:00
#include <retro_common_api.h>
#include "../core_type.h"
2018-03-28 19:22:07 +00:00
RETRO_BEGIN_DECLS
bool secondary_core_run_use_last_input(void);
2018-03-28 19:22:07 +00:00
bool secondary_core_deserialize(const void *buffer, int size);
bool secondary_core_ensure_exists(void);
void secondary_core_destroy(void);
2018-03-28 19:22:07 +00:00
void set_last_core_type(enum rarch_core_type type);
void remember_controller_port_device(long port, long device);
void clear_controller_port_map(void);
void secondary_core_set_variable_update(void);
2018-03-28 19:22:07 +00:00
RETRO_END_DECLS
#endif