Remove profile tag
[platform/core/api/media-content.git] / include_product / media_folder.h
index 6fbbe94..b868cbf 100755 (executable)
@@ -42,7 +42,7 @@ extern "C" {
 
 /**
  * @brief Gets the count of folder for the passed @a filter from the media database.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] filter The handle to the media filter
  * @param[out] folder_count The count of the media folder
@@ -67,7 +67,7 @@ int media_folder_get_folder_count_from_db(filter_h filter, int *folder_count);
  *          The @a callback function will be invoked for every retrieved
  *          folder. If @c NULL is passed to the @a filter, no filtering is applied.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks We do not recommend you call updating DB function in callback of foreach function.
  *
@@ -96,7 +96,7 @@ int media_folder_foreach_folder_from_db(filter_h filter, media_folder_cb callbac
 
 /**
  * @brief Gets the count of media files for the passed @a filter in the given @a folder_id from the media database.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] folder_id The ID of the media folder
  * @param[in] filter The handle to the media filter
@@ -122,7 +122,7 @@ int media_folder_get_media_count_from_db(const char *folder_id, filter_h filter,
  *          meeting desired filter option and calls @a callback for
  *          every retrieved media item. If @c NULL is passed to the @a filter, no filtering is applied.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks   Do not call updating DB function like media_info_update_to_db() in your callback function,
  *                    your callback function is invoked as inline function. \n
@@ -159,7 +159,7 @@ int media_folder_foreach_media_from_db(const char *folder_id, filter_h filter, m
  *          media folder foreach function such as media_folder_foreach_folder_from_db(). To use this handle outside of these foreach functions,
  *          use this function.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a dst should be released using media_folder_destroy().
  *
@@ -183,7 +183,7 @@ int media_folder_clone(media_folder_h *dst, media_folder_h src);
  *          no longer can be used to perform any operations. A new handle has to
  *          be created before the next use.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] folder The handle to the media folder
  *
@@ -201,7 +201,7 @@ int media_folder_destroy(media_folder_h folder);
 
 /**
  * @brief Gets the media folder ID.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a folder_id should be released using free().
  *
@@ -218,7 +218,7 @@ int media_folder_get_folder_id(media_folder_h folder, char **folder_id);
 
 /**
  * @brief Gets the absolute path to the media folder.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a path should be released using free().
  *
@@ -237,7 +237,7 @@ int media_folder_get_path(media_folder_h folder, char **path);
 
 /**
  * @brief Gets the media folder name.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a folder_name should be released using free().
  *
@@ -254,46 +254,11 @@ int media_folder_get_path(media_folder_h folder, char **path);
 int media_folder_get_name(media_folder_h folder, char **folder_name);
 
 /**
- * @deprecated Deprecated since 5.0. Use storage_get_type_dev() instead.
- * @brief Gets the folder storage type.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- *
- * @param[in] folder The handle to the media folder
- * @param[out] storage_type The storage type of the media folder
- *
- * @return @c 0 on success,
- *         otherwise a negative error value
- *
- * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- */
-int media_folder_get_storage_type(media_folder_h folder, media_content_storage_e *storage_type) TIZEN_DEPRECATED_API;
-
-/**
- * @deprecated Deprecated since 5.0.
- * @brief Gets the storage id of the folder.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- *
- * @remarks The @a storage_id should be released using free().
- *
- * @param[in] folder The handle to the media folder
- * @param[out] storage_id The storage id of the media folder
- *
- * @return @c 0 on success,
- *         otherwise a negative error value
- *
- * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
- */
-int media_folder_get_storage_id(media_folder_h folder, char **storage_id) TIZEN_DEPRECATED_API;
-
-/**
  * @brief Gets the media folder from the media database.
  *
  * @details This function creates a new media folder handle from the media database by the given @a folder_id.
  *          Media folder will be created, which is filled with folder information.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a folder should be released using media_folder_destroy().
  *