mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 18:20:27 +00:00
Move location_driver.c to location/
This commit is contained in:
parent
a71b143dad
commit
c4bf097d7f
@ -102,7 +102,7 @@ OBJ += frontend/frontend.o \
|
||||
gfx/video_driver.o \
|
||||
osk/osk_driver.o \
|
||||
camera/camera_driver.o \
|
||||
location_driver.o \
|
||||
location/location_driver.o \
|
||||
driver.o \
|
||||
settings.o \
|
||||
settings_list.o \
|
||||
|
2
driver.h
2
driver.h
@ -33,7 +33,7 @@
|
||||
#include "menu/menu_driver.h"
|
||||
#include "osk/osk_driver.h"
|
||||
#include "camera/camera_driver.h"
|
||||
#include "location_driver.h"
|
||||
#include "location/location_driver.h"
|
||||
#include "audio/resamplers/resampler.h"
|
||||
#include "record/ffemu.h"
|
||||
|
||||
|
@ -501,7 +501,7 @@ DRIVERS
|
||||
#include "../audio/audio_driver.c"
|
||||
#include "../osk/osk_driver.c"
|
||||
#include "../camera/camera_driver.c"
|
||||
#include "../location_driver.c"
|
||||
#include "../location/location_driver.c"
|
||||
#include "../driver.c"
|
||||
|
||||
/*============================================================
|
||||
|
@ -17,8 +17,8 @@
|
||||
#include <string.h>
|
||||
#include <string/string_list.h>
|
||||
#include "location_driver.h"
|
||||
#include "driver.h"
|
||||
#include "general.h"
|
||||
#include "../driver.h"
|
||||
#include "../general.h"
|
||||
|
||||
static const location_driver_t *location_drivers[] = {
|
||||
#ifdef ANDROID
|
@ -17,6 +17,10 @@
|
||||
#ifndef __LOCATION_DRIVER__H
|
||||
#define __LOCATION_DRIVER__H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include <boolean.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user