Move location_driver.c to location/

This commit is contained in:
twinaphex 2015-01-12 19:53:10 +01:00
parent a71b143dad
commit c4bf097d7f
5 changed files with 9 additions and 5 deletions

View File

@ -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 \

View File

@ -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"

View File

@ -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"
/*============================================================

View File

@ -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

View File

@ -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