fixed codes to use E_API instead of EAPI. 80/197580/1 accepted/tizen/unified/20190115.060018 submit/tizen/20190114.084843
authorGwanglim Lee <gl77.lee@samsung.com>
Mon, 14 Jan 2019 08:36:27 +0000 (17:36 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Mon, 14 Jan 2019 08:36:27 +0000 (17:36 +0900)
Change-Id: I6eb0864b2a7951019e006c8a99a2670687cf775e

src/bin/e_comp_wl_rsm.c
src/bin/e_comp_wl_rsm.h
src/bin/e_input_device.c
src/bin/e_input_evdev.c

index bb189b1b22ec12ffb5c9494f3af1a45c58dd058c..66679cf32c94c2acc0099524d0e5245b923ec6fa 100644 (file)
@@ -3609,7 +3609,7 @@ _e_comp_wl_remote_surface_subsurface_commit(E_Comp_Wl_Remote_Provider *parent_pr
 }
 #endif /* HAVE_REMOTE_SURFACE */
 
-EAPI E_Client*
+E_API E_Client*
 e_comp_wl_remote_surface_bound_provider_ec_get(E_Client *ec)
 {
 #ifdef HAVE_REMOTE_SURFACE
@@ -3689,7 +3689,7 @@ e_comp_wl_remote_surface_commit(E_Client *ec)
 #endif /* HAVE_REMOTE_SURFACE */
 }
 
-EAPI void
+E_API void
 e_comp_wl_remote_surface_image_save(E_Client *ec)
 {
 #ifdef HAVE_REMOTE_SURFACE
@@ -3711,7 +3711,7 @@ end:
 #endif /* HAVE_REMOTE_SURFACE */
 }
 
-EAPI void
+E_API void
 e_comp_wl_remote_surface_image_save_skip_set(E_Client *ec, Eina_Bool set)
 {
    if (!e_config->save_win_buffer) return;
@@ -3720,7 +3720,7 @@ e_comp_wl_remote_surface_image_save_skip_set(E_Client *ec, Eina_Bool set)
    ec->skip_save_img = set;
 }
 
-EAPI Eina_Bool
+E_API Eina_Bool
 e_comp_wl_remote_surface_image_save_skip_get(E_Client *ec)
 {
    if (e_object_is_del(E_OBJECT(ec))) return EINA_FALSE;
index 83d60af57490f6a0ac3a93a03edaed6da04480c7..29e3e38604628b8bad188edbc193627e414d2224 100644 (file)
@@ -4,14 +4,14 @@ typedef struct _E_Event_Remote_Surface_Provider E_Event_Remote_Surface_Provider;
 # ifndef E_COMP_WL_RSM_H
 #  define E_COMP_WL_RSM_H
 
-EINTERN void      e_comp_wl_remote_surface_init(void);
-EINTERN void      e_comp_wl_remote_surface_shutdown(void);
-EINTERN Eina_Bool e_comp_wl_remote_surface_commit(E_Client *ec);
-EAPI    void      e_comp_wl_remote_surface_image_save(E_Client *ec);
-EAPI    void      e_comp_wl_remote_surface_image_save_skip_set(E_Client *ec, Eina_Bool set);
-EAPI    Eina_Bool e_comp_wl_remote_surface_image_save_skip_get(E_Client *ec);
-EINTERN void      e_comp_wl_remote_surface_debug_info_get(Eldbus_Message_Iter *iter);
-EAPI E_Client*    e_comp_wl_remote_surface_bound_provider_ec_get(E_Client *ec);
+EINTERN void             e_comp_wl_remote_surface_init(void);
+EINTERN void             e_comp_wl_remote_surface_shutdown(void);
+EINTERN Eina_Bool        e_comp_wl_remote_surface_commit(E_Client *ec);
+E_API   void             e_comp_wl_remote_surface_image_save(E_Client *ec);
+E_API   void             e_comp_wl_remote_surface_image_save_skip_set(E_Client *ec, Eina_Bool set);
+E_API   Eina_Bool        e_comp_wl_remote_surface_image_save_skip_get(E_Client *ec);
+EINTERN void             e_comp_wl_remote_surface_debug_info_get(Eldbus_Message_Iter *iter);
+E_API   E_Client        *e_comp_wl_remote_surface_bound_provider_ec_get(E_Client *ec);
 
 E_API extern int E_EVENT_REMOTE_SURFACE_PROVIDER_VISIBILITY_CHANGE;
 
index 89aba2709e58ed0e66325211799dbb8764248d2f..a5b0d6c27d491b1e94cf64f4c38c7e60e362cc21 100644 (file)
@@ -1171,7 +1171,7 @@ e_input_devices_get(void)
    return einput_devices;
 }
 
-EAPI Eina_Bool
+E_API Eina_Bool
 e_input_device_mouse_accel_speed_set(E_Input_Device *dev, double speed)
 {
    E_Input_Seat *seat = NULL;
index 76e9ae03c4c5bf1618a325e606b0bee4f7d764d7..9b38eb1eeb2f11d266e1ac3239ea6968483e3568 100644 (file)
@@ -1561,7 +1561,7 @@ e_input_evdev_touch_calibration_set(E_Input_Evdev *edev, float matrix[6])
    return EINA_TRUE;
 }
 
-EAPI Eina_Bool
+EINTERN Eina_Bool
 e_input_evdev_mouse_accel_speed_set(E_Input_Evdev *edev, double speed)
 {
    EINA_SAFETY_ON_NULL_RETURN_VAL(edev, EINA_FALSE);