Remove conditional statements from Native API headers 52/302552/1
authorKrzysztof Malysa <k.malysa@samsung.com>
Thu, 7 Dec 2023 15:06:06 +0000 (16:06 +0100)
committerKrzysztof Malysa <k.malysa@samsung.com>
Fri, 8 Dec 2023 08:49:30 +0000 (09:49 +0100)
Part of 9.0 Native API Public Header.

Change-Id: I4ff7f65e20ef4ad811b95e026b51d5ec93deb0bb

src/include/privilege_information.h

index 8b5aa61..72c59af 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 
 /**
  * @brief Enumeration for error code for Privilege Information.
- * @since_tizen @if WEARABLE 2.3.1 @elseif MOBILE 2.3 @endif
+ * @since_tizen 2.3
  */
 typedef enum {
        PRVINFO_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -53,7 +53,7 @@ typedef enum {
 
 /**
  * @brief Gets the display name of the given privilege.
- * @since_tizen @if WEARABLE 2.3.1 @elseif MOBILE 2.3 @endif
+ * @since_tizen 2.3
  * @remarks @a display_name must be released using free().
  * @remarks Since 6.0, this function returns #PRVINFO_ERROR_NO_MATCHING_PRIVILEGE if the given @a privilege doesn't exist.
  * @param[in] api_version The API version of the application to get privilege information
@@ -72,7 +72,7 @@ int privilege_info_get_display_name(const char *api_version, const char *privile
 
 /**
  * @brief Gets the display name of the given privilege.
- * @since_tizen @if WEARABLE 2.3.1 @elseif MOBILE 2.3 @endif
+ * @since_tizen 2.3
  * @remarks @a display_name must be released using free().
  * @remarks @a package_type must be one of followings: "PRVINFO_PACKAGE_TYPE_NATIVE", "PRVINFO_PACKAGE_TYPE_WEB"
  * @remarks Since 6.0, this function returns #PRVINFO_ERROR_NO_MATCHING_PRIVILEGE if the given @a privilege doesn't exist.
@@ -93,7 +93,7 @@ int privilege_info_get_display_name_by_pkgtype(const char *package_type, const c
 
 /**
  * @brief Gets the description of the given privilege.
- * @since_tizen @if WEARABLE 2.3.1 @elseif MOBILE 2.3 @endif
+ * @since_tizen 2.3
  * @remarks @a description must be released using free().
  * @remarks Since 6.0, this function returns #PRVINFO_ERROR_NO_MATCHING_PRIVILEGE if the given @a privilege doesn't exist.
  * @param[in] api_version The API version of the application to get privilege information
@@ -112,7 +112,7 @@ int privilege_info_get_description(const char *api_version, const char *privileg
 
 /**
  * @brief Gets the description of the given privilege.
- * @since_tizen @if WEARABLE 2.3.1 @elseif MOBILE 2.3 @endif
+ * @since_tizen 2.3
  * @remarks @a description must be released using free().
  * @remarks @a package_type must be one of followings: "PRVINFO_PACKAGE_TYPE_NATIVE", "PRVINFO_PACKAGE_TYPE_WEB"
  * @remarks Since 6.0, this function returns #PRVINFO_ERROR_NO_MATCHING_PRIVILEGE if the given @a privilege doesn't exist.