Gps service / inc /

geolocation_manager.h

  1. #ifndef __location_manager_H__
  2. #define __location_manager_H__
  3.  
  4. #define REMOTE_APP_ID "org.tizen.$(appName)-consumer"
  5. #define REMOTE_PORT "gps-consumer-port"
  6.  
  7. /*
  8. * Initialize location manager and set callback for position and satellite data updates
  9. */
  10. bool geolocation_manager_init(void);
  11.  
  12. /*
  13. * Stop geolocation service
  14. */
  15. void geolocation_manager_stop_service(void);
  16.  
  17. /*
  18. * Destroy geolocation service
  19. */
  20. void geolocation_manager_destroy_service(void);
  21.  
  22. #endif /* __location_manager_H__ */
  23.