Add typedef enum for using values in application. 66/76466/2
authorWoochan Lee <wc0917.lee@samsung.com>
Fri, 24 Jun 2016 04:45:01 +0000 (13:45 +0900)
committerwoochan lee <wc0917.lee@samsung.com>
Fri, 24 Jun 2016 04:47:09 +0000 (21:47 -0700)
Change-Id: Ifc2a9a1d088ad7bc1bd4ed4f73f3bb79d7c80ac4

src/include/interface/ui_iface_types.h

index 8ac5bbb5b97881bb5004987b37942927b481b154..2ccbb64dcce66dd9ee408994bda5ec575209e086 100644 (file)
@@ -30,6 +30,7 @@ enum ui_view_indicator
        UI_VIEW_INDICATOR_SHOW,        ///< Indicator show
        UI_VIEW_INDICATOR_LAST
 };
+typedef enum ui_view_indicator ui_view_indicator;
 
 /**
  * Possible values for view state.
@@ -44,5 +45,6 @@ enum ui_view_state
        UI_VIEW_STATE_PAUSE,           ///< Pause state
        UI_VIEW_STATE_LAST
 };
+typedef enum ui_view_state ui_view_state;
 
 #endif