e_view_rect: add E_API visibility 36/324336/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 15 May 2025 08:04:07 +0000 (17:04 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Thu, 15 May 2025 12:24:56 +0000 (21:24 +0900)
Change-Id: I1b9bfa2decc2252a563a68a77cf24808732bc8f8

src/include/e_view_rect.h

index c65f2f2ba6a07927e90747bea8cce7605be6cea8..7e8b27ae2963b5339536efd7ad957da71aac213f 100644 (file)
@@ -12,27 +12,27 @@ typedef struct _E_View_Rect E_View_Rect;
 /**
  * TODO
  */
-E_View_Rect *e_view_rect_create(E_View_Tree *parent, int width, int height, const int color[4]);
+E_API E_View_Rect *e_view_rect_create(E_View_Tree *parent, int width, int height, const int color[4]);
 
 /**
  * TODO
  */
-E_View_Rect *e_view_rect_try_from_view(E_View *view);
+E_API E_View_Rect *e_view_rect_try_from_view(E_View *view);
 
 /**
  * TODO
  */
-E_View *e_view_rect_view_get(E_View_Rect *rect);
+E_API E_View *e_view_rect_view_get(E_View_Rect *rect);
 
 /**
  * TODO
  */
-void e_view_rect_color_set(E_View_Rect *rect, int r, int g, int b, int a);
+E_API void e_view_rect_color_set(E_View_Rect *rect, int r, int g, int b, int a);
 
 /**
  * TODO
  */
-void e_view_rect_color_get(E_View_Rect *rect, int *r, int *g, int *b, int *a);
+E_API void e_view_rect_color_get(E_View_Rect *rect, int *r, int *g, int *b, int *a);
 
 /**
  * Change the size of given E_View_Rect
@@ -40,17 +40,17 @@ void e_view_rect_color_get(E_View_Rect *rect, int *r, int *g, int *b, int *a);
  * @param[in] width Integer to change width
  * @param[in] height Integer to change height
 */
-void e_view_rect_size_set(E_View_Rect *rect, int width, int height);
+E_API void e_view_rect_size_set(E_View_Rect *rect, int width, int height);
 
 /**
  * TODO
  */
-void e_view_rect_size_get(E_View_Rect *rect, int *width, int *height);
+E_API void e_view_rect_size_get(E_View_Rect *rect, int *width, int *height);
 
 /**
  * TODO
  */
-void e_view_rect_resize_listener_add(E_View_Rect *rect, struct wl_listener *listener);
+E_API void e_view_rect_resize_listener_add(E_View_Rect *rect, struct wl_listener *listener);
 
 #ifdef  __cplusplus
 }