Create command_event.c

This commit is contained in:
twinaphex 2015-04-13 11:15:40 +02:00
parent 5c3d4eb4e5
commit 61e33300b7
6 changed files with 1493 additions and 1429 deletions

View File

@ -98,6 +98,7 @@ OBJ += frontend/frontend.o \
ui/drivers/ui_null.o \
libretro_version_1.o \
retroarch.o \
command_event.o \
runloop.o \
runloop_data.o \
content.o \

1463
command_event.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
@ -19,7 +18,6 @@
#include <stdint.h>
#include <boolean.h>
#ifdef __cplusplus
extern "C" {
#endif

View File

@ -733,6 +733,8 @@ MENU
#include "../command.c"
#endif
#include "../command_event.c"
#ifdef __cplusplus
extern "C" {
#endif

File diff suppressed because it is too large Load Diff

View File

@ -208,6 +208,27 @@ int rarch_defer_core(core_info_list_t *data,
const char *dir, const char *path, const char *menu_label,
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
}
#endif