summaryrefslogtreecommitdiff
path: root/src/lib/elput/elput_touch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elput/elput_touch.c')
-rw-r--r--src/lib/elput/elput_touch.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/elput/elput_touch.c b/src/lib/elput/elput_touch.c
index dca8d9fcfc..43f6c20758 100644
--- a/src/lib/elput/elput_touch.c
+++ b/src/lib/elput/elput_touch.c
@@ -8,7 +8,7 @@ _check_status(int ret)
return EINA_FALSE;
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_drag_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
int ret = -1;
@@ -31,7 +31,7 @@ elput_touch_drag_enabled_set(Elput_Device *device, Eina_Bool enabled)
return _check_status(ret);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_drag_enabled_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);
@@ -39,7 +39,7 @@ elput_touch_drag_enabled_get(Elput_Device *device)
return libinput_device_config_tap_get_drag_enabled(device->device);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_drag_lock_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
int ret = -1;
@@ -62,7 +62,7 @@ elput_touch_drag_lock_enabled_set(Elput_Device *device, Eina_Bool enabled)
return _check_status(ret);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_drag_lock_enabled_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);
@@ -70,7 +70,7 @@ elput_touch_drag_lock_enabled_get(Elput_Device *device)
return libinput_device_config_tap_get_drag_lock_enabled(device->device);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_dwt_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
int ret = -1;
@@ -96,7 +96,7 @@ elput_touch_dwt_enabled_set(Elput_Device *device, Eina_Bool enabled)
return _check_status(ret);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_dwt_enabled_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);
@@ -107,7 +107,7 @@ elput_touch_dwt_enabled_get(Elput_Device *device)
return libinput_device_config_dwt_get_enabled(device->device);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_scroll_method_set(Elput_Device *device, int method)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);
@@ -119,7 +119,7 @@ elput_touch_scroll_method_set(Elput_Device *device, int method)
return EINA_FALSE;
}
-EAPI int
+ELPUT_API int
elput_touch_scroll_method_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, -1);
@@ -127,7 +127,7 @@ elput_touch_scroll_method_get(Elput_Device *device)
return libinput_device_config_scroll_get_method(device->device);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_click_method_set(Elput_Device *device, int method)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);
@@ -139,7 +139,7 @@ elput_touch_click_method_set(Elput_Device *device, int method)
return EINA_FALSE;
}
-EAPI int
+ELPUT_API int
elput_touch_click_method_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, -1);
@@ -147,7 +147,7 @@ elput_touch_click_method_get(Elput_Device *device)
return libinput_device_config_click_get_method(device->device);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_tap_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
int ret = -1;
@@ -170,7 +170,7 @@ elput_touch_tap_enabled_set(Elput_Device *device, Eina_Bool enabled)
return _check_status(ret);
}
-EAPI Eina_Bool
+ELPUT_API Eina_Bool
elput_touch_tap_enabled_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);