Tizen Native API
5.5
|
This provides APIs related to Place Editorial information, used in Place Discovery and Search.
Functions | |
int | maps_place_editorial_destroy (maps_place_editorial_h editorial) |
Destroys the place editorial handle and releases all its resources. | |
int | maps_place_editorial_clone (const maps_place_editorial_h origin, maps_place_editorial_h *cloned) |
Clones the place editorial handle. | |
int | maps_place_editorial_get_description (const maps_place_editorial_h editorial, char **description) |
Gets the place editorial description. | |
int | maps_place_editorial_get_language (const maps_place_editorial_h editorial, char **language) |
Gets the place editorial language. | |
int | maps_place_editorial_get_media (const maps_place_editorial_h editorial, maps_place_media_h *media) |
Gets the place editorial media. | |
Typedefs | |
typedef void * | maps_place_editorial_h |
The Place Editorial handle. |
typedef void* maps_place_editorial_h |
The Place Editorial handle.
The handle of Place Editorial instance.
int maps_place_editorial_clone | ( | const maps_place_editorial_h | origin, |
maps_place_editorial_h * | cloned | ||
) |
Clones the place editorial handle.
This function clones the place editorial handle origin and all its resources.
[in] | origin | The original place editorial handle |
[out] | cloned | A cloned place editorial handle |
0
on success, otherwise a negative error value MAPS_ERROR_NONE | Successful |
MAPS_ERROR_OUT_OF_MEMORY | Out of memory |
MAPS_ERROR_INVALID_PARAMETER | Invalid parameter |
MAPS_ERROR_NOT_SUPPORTED | Not supported |
int maps_place_editorial_destroy | ( | maps_place_editorial_h | editorial | ) |
Destroys the place editorial handle and releases all its resources.
This function destroys the place editorial handle and releases all its resources.
[in] | editorial | The place editorial handle to destroy |
0
on success, otherwise a negative error value MAPS_ERROR_NONE | Successful |
MAPS_ERROR_INVALID_PARAMETER | Invalid parameter |
MAPS_ERROR_NOT_SUPPORTED | Not supported |
int maps_place_editorial_get_description | ( | const maps_place_editorial_h | editorial, |
char ** | description | ||
) |
Gets the place editorial description.
This function gets the place editorial description.
[in] | editorial | The handle of place editorial |
[out] | description | The place editorial description |
0
on success, otherwise a negative error value MAPS_ERROR_NONE | Successful |
MAPS_ERROR_INVALID_PARAMETER | Invalid parameter |
MAPS_ERROR_NOT_SUPPORTED | Not supported |
int maps_place_editorial_get_language | ( | const maps_place_editorial_h | editorial, |
char ** | language | ||
) |
Gets the place editorial language.
This function gets the place editorial language.
[in] | editorial | The handle of place editorial |
[out] | language | The place editorial language |
0
on success, otherwise a negative error value MAPS_ERROR_NONE | Successful |
MAPS_ERROR_INVALID_PARAMETER | Invalid parameter |
MAPS_ERROR_NOT_SUPPORTED | Not supported |
int maps_place_editorial_get_media | ( | const maps_place_editorial_h | editorial, |
maps_place_media_h * | media | ||
) |
Gets the place editorial media.
This function gets the place editorial media.
[in] | editorial | The handle of place editorial |
[out] | media | The place editorial media |
0
on success, otherwise a negative error value MAPS_ERROR_NONE | Successful |
MAPS_ERROR_INVALID_PARAMETER | Invalid parameter |
MAPS_ERROR_NOT_SUPPORTED | Not supported |