mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 19:14:56 +00:00
17 lines
317 B
C
17 lines
317 B
C
|
#ifndef __COPY_LOAD_INFO_H__
|
||
|
#define __COPY_LOAD_INFO_H__
|
||
|
|
||
|
#include "retro_common_api.h"
|
||
|
#include "libretro.h"
|
||
|
#include "core.h"
|
||
|
#include "boolean.h"
|
||
|
|
||
|
RETRO_BEGIN_DECLS
|
||
|
|
||
|
void set_load_content_info(const retro_ctx_load_content_info_t *ctx);
|
||
|
void set_last_core_type(enum rarch_core_type type);
|
||
|
|
||
|
RETRO_END_DECLS
|
||
|
|
||
|
#endif
|