mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-18 00:32:46 +00:00
Create command_event.c
This commit is contained in:
parent
5c3d4eb4e5
commit
61e33300b7
@ -98,6 +98,7 @@ OBJ += frontend/frontend.o \
|
|||||||
ui/drivers/ui_null.o \
|
ui/drivers/ui_null.o \
|
||||||
libretro_version_1.o \
|
libretro_version_1.o \
|
||||||
retroarch.o \
|
retroarch.o \
|
||||||
|
command_event.o \
|
||||||
runloop.o \
|
runloop.o \
|
||||||
runloop_data.o \
|
runloop_data.o \
|
||||||
content.o \
|
content.o \
|
||||||
|
1463
command_event.c
Normal file
1463
command_event.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,4 @@
|
|||||||
/* RetroArch - A frontend for libretro.
|
/* RetroArch - A frontend for libretro.
|
||||||
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
||||||
* Copyright (C) 2011-2015 - Daniel De Matteis
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
||||||
*
|
*
|
||||||
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
||||||
@ -19,7 +18,6 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <boolean.h>
|
#include <boolean.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
@ -733,6 +733,8 @@ MENU
|
|||||||
#include "../command.c"
|
#include "../command.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "../command_event.c"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
1433
retroarch.c
1433
retroarch.c
File diff suppressed because it is too large
Load Diff
21
retroarch.h
21
retroarch.h
@ -208,6 +208,27 @@ int rarch_defer_core(core_info_list_t *data,
|
|||||||
const char *dir, const char *path, const char *menu_label,
|
const char *dir, const char *path, const char *menu_label,
|
||||||
char *deferred_path, size_t sizeof_deferred_path);
|
char *deferred_path, size_t sizeof_deferred_path);
|
||||||
|
|
||||||
|
void rarch_fill_pathnames(void);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* rarch_verify_api_version:
|
||||||
|
*
|
||||||
|
* Compare libretro core API version against API version
|
||||||
|
* used by RetroArch.
|
||||||
|
*
|
||||||
|
* TODO - when libretro v2 gets added, allow for switching
|
||||||
|
* between libretro version backend dynamically.
|
||||||
|
**/
|
||||||
|
void rarch_verify_api_version(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* rarch_init_system_av_info:
|
||||||
|
*
|
||||||
|
* Initialize system A/V information by calling the libretro core's
|
||||||
|
* get_system_av_info function.
|
||||||
|
**/
|
||||||
|
void rarch_init_system_av_info(void);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user