Add since_tizen for initial functions 25/202825/2
authorDaehyeon Jung <darrenh.jung@samsung.com>
Fri, 5 Apr 2019 00:18:35 +0000 (09:18 +0900)
committerDaehyeon Jung <darrenh.jung@samsung.com>
Fri, 5 Apr 2019 00:56:16 +0000 (09:56 +0900)
Change-Id: Ie1174aa62a0e75285a75ded4b9678e41d6c6fd79
Signed-off-by: Daehyeon Jung <darrenh.jung@samsung.com>
include/mime_type.h

index 83c941e..ef9ff64 100755 (executable)
@@ -33,6 +33,7 @@ extern "C"
 
 /**
  * @brief Enumeration of error code.
+ * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 typedef enum {
        MIME_TYPE_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -46,6 +47,7 @@ typedef enum {
 /**
  * @brief Gets the MIME type for the given file extension.
  *
+ * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks The @a mime_type must be released with free() by you.
  * @param[in] file_extension The file extension without the leading dot ('.')
  * @param[out] mime_type The MIME type for the given file extension \n
@@ -63,6 +65,7 @@ int mime_type_get_mime_type(const char *file_extension, char **mime_type);
 /**
  * @brief Gets the file extensions for the given MIME type.
  *
+ * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks The @a file_extension must be released with free() by you.
  * @param[in] mime_type The MIME type
  * @param[out] file_extension The array of file extension without the leading dot ('.')