Update doxygen 47/214847/1
authormk5004.lee <mk5004.lee@samsung.com>
Fri, 27 Sep 2019 06:20:45 +0000 (15:20 +0900)
committermk5004.lee <mk5004.lee@samsung.com>
Fri, 27 Sep 2019 06:20:45 +0000 (15:20 +0900)
Change-Id: I33d9256e13f3fca1ebcd5698654c323c28124fea
Signed-off-by: mk5004.lee <mk5004.lee@samsung.com>
include/app_event.h

index 5e9ad76..ba13005 100644 (file)
@@ -48,7 +48,7 @@ typedef struct event_handler *event_handler_h;
  * @param[in] event_name The interested event name
  * @param[in] event_data The data of interested event
  * @param[in] user_data The user data set by event_add_event_handler()
- * @see event_add_event_handler
+ * @see event_add_event_handler()
  */
 typedef void (*event_cb)(const char *event_name, bundle *event_data, void *user_data);
 
@@ -175,7 +175,7 @@ typedef enum {
 
 
 /**
- * @brief Definition for system-event of usb : status of usb connection.
+ * @brief Definition for system-event of USB : status of USB connection.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @see EVENT_KEY_USB_STATUS
  */
@@ -731,9 +731,9 @@ typedef enum {
  * @brief Definition for key of SYSTEM_EVENT_LANGUAGE_SET.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @remarks The value of this key is full name of locale, for example,
- *             "ko_KR.UTF8" : in case of Korean language
- *             "en_US.UTF8" : in case of USA language,
- *             refer to linux locale info.
+ *          "ko_KR.UTF8" : in case of Korean language
+ *          "en_US.UTF8" : in case of USA language,
+ *          refer to linux locale info.
  */
 #define EVENT_KEY_LANGUAGE_SET "language_set"
 
@@ -750,9 +750,9 @@ typedef enum {
  * @brief Definition for key of SYSTEM_EVENT_REGION_FORMAT.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @remarks The value of this key is full name of locale, for example,
- *             "ko_KR.UTF8" : in case of Korean region format
- *             "en_US.UTF8" : in case of USA region format,
- *             refer to linux locale info.
+ *          "ko_KR.UTF8" : in case of Korean region format
+ *          "en_US.UTF8" : in case of USA region format,
+ *          refer to linux locale info.
  */
 #define EVENT_KEY_REGION_FORMAT "region_format"
 
@@ -1004,8 +1004,8 @@ typedef enum {
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #EVENT_ERROR_NONE Successful
- * @retval #EVENT_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #EVENT_ERROR_PERMISSION_DENIED Permission denied
+ * @retval #EVENT_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #EVENT_ERROR_IO_ERROR Adding handler failed
  * @retval #EVENT_ERROR_OUT_OF_MEMORY Out of memory
  */
@@ -1062,9 +1062,9 @@ int event_publish_trusted_app_event(const char *event_name, bundle *event_data);
  * @brief Keeps last User-Event data for receiver applications.
  *
  * @since_tizen 3.0
- * @remarks The receiver applications will receive this last event data after adding their new handlers via event_add_event_handler() API since the sender application called this API.
+ * @remarks The receiver applications will receive this last event data after adding their new handlers via event_add_event_handler() since the sender application called this function.
  * @remarks If a sender application sends same event via trusted API and non-trusted API, then a trusted receiver will get latest data regardless of trusted or non-trusted, but non-trusted receiver will get the last data only from non-trusted API.
- * @remarks The effect of this API continues during runtime. That means when the sender application process restarts, the sender application needs to call this api again to make the event to keep the last event.
+ * @remarks The effect of this function continues during runtime. That means when the sender application process restarts, the sender application needs to call this function again to make the event to keep the last event.
  * @param[in] event_name The event's name to keep last event data
  * @return @c 0 on success,
  *         otherwise a negative error value