diff options
author | sbrissen <sbrissen@hotmail.com> | 2013-10-28 11:21:11 -0400 |
---|---|---|
committer | sbrissen <sbrissen@hotmail.com> | 2013-10-28 11:21:11 -0400 |
commit | c7657bc724fe4a2477f70cc378670a59b3da8f6c (patch) | |
tree | e0f29cf1444423eda53bbaf3c5312dd638d19438 /include | |
parent | 3c9204c3effe7e2c376a51c7a4c7a29a3da437ba (diff) | |
download | device_samsung_n5100-c7657bc724fe4a2477f70cc378670a59b3da8f6c.zip device_samsung_n5100-c7657bc724fe4a2477f70cc378670a59b3da8f6c.tar.gz device_samsung_n5100-c7657bc724fe4a2477f70cc378670a59b3da8f6c.tar.bz2 |
n5100: merge into common repo kona-common
Diffstat (limited to 'include')
-rw-r--r--[-rwxr-xr-x] | include/hardware/gps.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/hardware/gps.h b/include/hardware/gps.h index ba6eb5c..f149e98 100755..100644 --- a/include/hardware/gps.h +++ b/include/hardware/gps.h @@ -874,13 +874,13 @@ typedef struct { typedef struct { /** set to sizeof(GpsGeofencingInterface) */ size_t size; - + /** * Opens the geofence interface and provides the callback routines * to the implemenation of this interface. */ void (*init)( GpsGeofenceCallbacks* callbacks ); - + /** * Add a geofence area. This api currently supports circular geofences. * Parameters: @@ -915,14 +915,14 @@ typedef struct { int last_transition, int monitor_transitions, int notification_responsiveness_ms, int unknown_timer_ms); - + /** * Pause monitoring a particular geofence. * Parameters: * geofence_id - The id for the geofence. */ void (*pause_geofence) (int32_t geofence_id); - + /** * Resume monitoring a particular geofence. * Parameters: @@ -934,7 +934,7 @@ typedef struct { * add_geofence_area call. */ void (*resume_geofence) (int32_t geofence_id, int monitor_transitions); - + /** * Remove a geofence area. After the function returns, no notifications * should be sent. |