Move header into proper file
[platform/core/api/gesture.git] / include / gesture_common.h
index 491e5d7..a909343 100644 (file)
@@ -18,7 +18,6 @@
 #define __TIZEN_UIX_GESTURE_COMMON_H__
 
 #include <tizen.h>
-#include <gesture_data_info.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -28,12 +27,17 @@ extern "C" {
 #define TIZEN_ERROR_GESTURE             -0x03090000
 #endif
 
-/**
+/*
  * @file gesture_common.h
  * @brief This file contains gesture's common struct info.
  */
 
 /**
+ * @addtogroup CAPI_UIX_GESTURE_MODULE
+ * @{
+ */
+
+/**
  * @brief Delivery through hand_gesture_recognition_cb() of gesture data handle.
  * @since_tizen @if WEARABLE 6.0 @endif
  */
@@ -46,11 +50,11 @@ typedef struct hand_gesture_data_s* hand_gesture_data_h;
  */
 typedef enum {
        HAND_GESTURE_ERROR_NONE         = TIZEN_ERROR_NONE,                     /**< Successful */
+       HAND_GESTURE_ERROR_NOT_SUPPORTED        = TIZEN_ERROR_NOT_SUPPORTED,            /**< Not supported */
        HAND_GESTURE_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER,   /**< Invalid function parameter */
        HAND_GESTURE_ERROR_INVALID_OPERATION = TIZEN_ERROR_INVALID_OPERATION,   /**< Function not implemented */
        HAND_GESTURE_ERROR_OUT_OF_MEMORY        = TIZEN_ERROR_OUT_OF_MEMORY,            /**< Out of memory */
        HAND_GESTURE_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED,   /**< Permission denied */
-       HAND_GESTURE_ERROR_NOT_SUPPORTED        = TIZEN_ERROR_NOT_SUPPORTED,            /**< Not supported */
        HAND_GESTURE_ERROR_ALREADY_STARTED      = TIZEN_ERROR_GESTURE | 0x01,           /**< Recognition is already started */
        HAND_GESTURE_ERROR_NOT_STARTED  = TIZEN_ERROR_GESTURE | 0x02,           /**< Recognition is not started */
        HAND_GESTURE_ERROR_OPERATION_FAILED     = TIZEN_ERROR_GESTURE | 0x04,           /**< Operation failed because of a system error */
@@ -79,6 +83,10 @@ typedef enum {
 } hand_gesture_option_e;
 
 
+/**
+ * @}
+ */
+
 #ifdef __cplusplus
 }
 #endif