mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Turn function static
This commit is contained in:
parent
d3b9356958
commit
fac18641cd
@ -429,7 +429,11 @@ error:
|
||||
return false;
|
||||
}
|
||||
|
||||
bool core_info_list_get_info(core_info_list_t *core_info_list,
|
||||
/* Shallow-copies internal state.
|
||||
*
|
||||
* Data in *info is invalidated when the
|
||||
* core_info_list is freed. */
|
||||
static bool core_info_list_get_info(core_info_list_t *core_info_list,
|
||||
core_info_t *out_info, const char *path)
|
||||
{
|
||||
size_t i;
|
||||
|
@ -100,11 +100,6 @@ typedef struct core_info_ctx_find
|
||||
void core_info_list_get_supported_cores(core_info_list_t *list,
|
||||
const char *path, const core_info_t **infos, size_t *num_infos);
|
||||
|
||||
/* Shallow-copies internal state. Data in *info is invalidated when the
|
||||
* core_info_list is freed. */
|
||||
bool core_info_list_get_info(core_info_list_t *list,
|
||||
core_info_t *info, const char *path);
|
||||
|
||||
bool core_info_list_get_display_name(core_info_list_t *list,
|
||||
const char *path, char *s, size_t len);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user