Rename frontend_context.c to frontend_driver.c

This commit is contained in:
twinaphex 2015-01-12 21:21:08 +01:00
parent 1b28a4a498
commit 64903de465
7 changed files with 8 additions and 8 deletions

View File

@ -85,7 +85,7 @@ endif
# General object files
OBJ += frontend/frontend.o \
frontend/frontend_context.o \
frontend/frontend_driver.o \
frontend/platform/platform_null.o \
libretro_version_1.o \
retroarch.o \

View File

@ -24,9 +24,9 @@
#include <stdint.h>
#include <compat/posix_string.h>
#include "frontend/frontend_context.h"
#include <retro_miscellaneous.h>
#include "frontend/frontend_driver.h"
#include "gfx/video_driver.h"
#include "audio/audio_driver.h"

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "frontend_context.h"
#include "frontend_driver.h"
#include <string.h>
#ifdef HAVE_CONFIG_H

View File

@ -14,8 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __FRONTEND_CONTEXT_H
#define __FRONTEND_CONTEXT_H
#ifndef __FRONTEND_DRIVER_H
#define __FRONTEND_DRIVER_H
#include <stddef.h>
#include <boolean.h>

View File

@ -24,7 +24,7 @@
#include "../file_ext.h"
#include <file/file_path.h>
#include <file/dir_list.h>
#include "frontend_context.h"
#include "frontend_driver.h"
struct defaults g_defaults;

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../frontend_context.h"
#include "../frontend_driver.h"
#include <stdint.h>
#include <boolean.h>

View File

@ -581,7 +581,7 @@ REWIND
FRONTEND
============================================================ */
#include "../frontend/frontend_context.c"
#include "../frontend/frontend_driver.c"
#if defined(__CELLOS_LV2__)
#include "../frontend/platform/platform_ps3.c"