mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 17:10:12 +00:00
6154a843e0
* Add error messages for: Core not having savestates, load/save state failure, secondary core create failure * Added messages for us locale, can be localized elsewhere * Add a configuration setting to hide the initial warning message for core not having savestates * Small code changes and cleanup for secondary core * Fixed typo "destory" in dirty input code
25 lines
589 B
C
25 lines
589 B
C
#ifndef __SECONDARY_CORE_H__
|
|
#define __SECONDARY_CORE_H__
|
|
|
|
#include <stddef.h>
|
|
#include <boolean.h>
|
|
|
|
#include <retro_common_api.h>
|
|
|
|
#include "../core_type.h"
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
bool secondary_core_run_no_input_polling(void);
|
|
bool secondary_core_deserialize(const void *buffer, int size);
|
|
bool secondary_core_ensure_exists(void);
|
|
void secondary_core_destroy(void);
|
|
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);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|