*/
typedef void(*geofence_event_cb)(int place_id, int geofence_id, geofence_manager_error_e error, geofence_manage_e manage, void *user_data);
+
/**
* @brief Called when the fence list is requested.
* @since_tizen 2.4
* @brief Checks whether the geofence manager is available or not.
* @since_tizen 2.4
* @param[out] supported @c true if geofence service is supported,
- * otherwise @c false
+ * otherwise @c false
* @return @c 0 on success,
* otherwise a negative error value
* @retval #GEOFENCE_MANAGER_ERROR_NONE Successful
* @brief Creates a Wi-Fi type of new geofence.
* @since_tizen 2.4
* @remarks The fence must be released using geofence_destroy().\n
- * Since 3.0, http://tizen.org/privilege/location privilege is not required.
+ * Since 3.0, http://tizen.org/privilege/location privilege is not required.
* @param[in] place_id The current place ID
* @param[in] bssid Specifies the value of BSSID of Wi-Fi MAC address
* @param[in] ssid Specifies the value of SSID of Wi-Fi Device
GEOFENCE_MANAGER_ERROR_DATABASE = TIZEN_ERROR_GEOFENCE_MANAGER | 0x07, /**< DB error in the server side */
GEOFENCE_MANAGER_ERROR_PLACE_ACCESS_DENIED = TIZEN_ERROR_GEOFENCE_MANAGER | 0x08, /**< Access to specified place is denied */
GEOFENCE_MANAGER_ERROR_GEOFENCE_ACCESS_DENIED = TIZEN_ERROR_GEOFENCE_MANAGER | 0x09, /**< Access to specified geofence is denied */
-}
-geofence_manager_error_e;
+} geofence_manager_error_e;
/**