Modify and Added comments. 10/294110/1
authorjykeon <jykeon@samsung.com>
Tue, 13 Jun 2023 07:57:04 +0000 (16:57 +0900)
committerjykeon <jykeon@samsung.com>
Tue, 13 Jun 2023 08:00:04 +0000 (17:00 +0900)
Change-Id: I6c19d88c1c8eccc428bc32e927834a8a4a82b017
Signed-off-by: jykeon <jykeon@samsung.com>
src/lib/ecore/Ecore_Common.h

index 1e03d90..dac5651 100644 (file)
@@ -3475,7 +3475,7 @@ EAPI Ecore_Device_Subclass ecore_device_subclass_get(const Ecore_Device *dev);
 /**
  * @brief Flags for Events
  *
- * @since_tizen 7.5
+ * @since_tizen 5.5
  */
 typedef enum _Ecore_Event_Flags
 {
@@ -3483,6 +3483,7 @@ typedef enum _Ecore_Event_Flags
    ECORE_EVENT_FLAG_ON_HOLD = (1 << 0), /**< This event is being delivered but should be put "on hold" until the on hold flag is unset. The event should be used for informational purposes and maybe some indications visually, but not actually perform anything */
    ECORE_EVENT_FLAG_ON_SCROLL = (1 << 1), /**< This event flag indicates the event occurs while scrolling; for example, DOWN event occurs during scrolling; the event should be used for informational purposes and maybe some indications visually, but not actually perform anything */
    ECORE_EVENT_FLAG_CANCEL = (1 << 2), /**< This event flag indicates the event is canceled. The event should be used for informational purposes and maybe some indications visually, but not actually perform anything.*/
+   //TIZEN_ONLY(20230419)
    ECORE_EVENT_FLAG_REPEAT = (1 << 3) /**< This event flag indicates the event is repeated. The event should be used for informational purposes and maybe some indications visually, but not actually perform anything.*/
 } Ecore_Event_Flags;