summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseungha.son <seungha.son@samsung.com>2016-09-21 09:29:27 +0900
committerseungha.son <seungha.son@samsung.com>2016-09-21 09:37:14 +0900
commit97bc4bb7b7fda083f068279b2f69b622d6f79a77 (patch)
tree0bfb47f9e852e20c0b3a887200d913941087bfe6
parentf51145ee20396400525781902ca18fe3a99e24eb (diff)
downloadnotification-97bc4bb7b7fda083f068279b2f69b622d6f79a77.tar.gz
notification-97bc4bb7b7fda083f068279b2f69b622d6f79a77.tar.bz2
notification-97bc4bb7b7fda083f068279b2f69b622d6f79a77.zip
Add description for notification_event_type_extension_e
Signed-off-by: seungha.son <seungha.son@samsung.com> Change-Id: I586d9e75172ddb1e2ed0bc1e7524069374659e48
-rw-r--r--include/notification_internal.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/include/notification_internal.h b/include/notification_internal.h
index cce350b..1af1b40 100644
--- a/include/notification_internal.h
+++ b/include/notification_internal.h
@@ -28,7 +28,15 @@ extern "C" {
#endif
/**
- * @brief Enumeration for notification ongoing value type
+ * @addtogroup NOTIFICATION_INTERNAL
+ * @{
+ */
+#define NOTIFICATION_GLOBAL_UID -1
+#define NOTIFICATION_DISPLAY_APP_HEADS_UP NOTIFICATION_DISPLAY_APP_ACTIVE /* To avoid build error */
+#define NOTIFICATION_ERROR (notification_error_quark())
+
+/**
+ * @brief Enumeration for notification ongoing value type.
* @since_tizen 3.0
*/
typedef enum _notification_ongoing_value_type {
@@ -36,18 +44,16 @@ typedef enum _notification_ongoing_value_type {
NOTIFICATION_ONGOING_VALUE_TYPE_TIME,
} notification_ongoing_value_type_e;
+/**
+ * @brief Enumeration for extension event type on notification.
+ * @since_tizen 3.0
+ * @see #notification_event_type_e
+ */
typedef enum _notification_event_type_extension {
NOTIFICATION_EVENT_TYPE_HIDDEN_BY_USER = 100,
NOTIFICATION_EVENT_TYPE_HIDDEN_BY_TIMEOUT = 101,
} notification_event_type_extension_e;
-/**
- * @addtogroup NOTIFICATION_INTERNAL
- * @{
- */
-#define NOTIFICATION_GLOBAL_UID -1
-#define NOTIFICATION_DISPLAY_APP_HEADS_UP NOTIFICATION_DISPLAY_APP_ACTIVE /* To avoid build error */
-#define NOTIFICATION_ERROR (notification_error_quark())
GQuark notification_error_quark(void);
/**