diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2015-03-04 15:36:35 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2015-03-06 15:50:17 +1000 |
commit | 595beb93b43b0f3ab40e9a5e02b8d8b9e4487503 (patch) | |
tree | 67f4ba509cb9acd4cdd3f70944cca259a41cbef2 /src/libinput.sym | |
parent | 9b865ba212ab15e626b3037c030e4d71588c1c4f (diff) |
Drop libinput_device_has_button
And merge all current API versions into the same block. This isn't technically
necessary since removing libinput_has_button from the code will remove it from
the exported list. That trips up test/symbols-leak-test though.
Since we break the API and bump the soname in this release anyway, move
to a single block so the initial stable API is all nicely grouped together.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/libinput.sym')
-rw-r--r-- | src/libinput.sym | 31 |
1 files changed, 11 insertions, 20 deletions
diff --git a/src/libinput.sym b/src/libinput.sym index 644e9105..eed067f0 100644 --- a/src/libinput.sym +++ b/src/libinput.sym @@ -1,6 +1,6 @@ /* in alphabetical order! */ -LIBINPUT_0.8.0 { +LIBINPUT_0.12.0 { global: libinput_config_status_to_str; libinput_device_config_accel_get_default_speed; @@ -15,6 +15,10 @@ global: libinput_device_config_calibration_get_matrix; libinput_device_config_calibration_has_matrix; libinput_device_config_calibration_set_matrix; + libinput_device_config_click_get_default_method; + libinput_device_config_click_get_method; + libinput_device_config_click_get_methods; + libinput_device_config_click_set_method; libinput_device_config_scroll_get_button; libinput_device_config_scroll_get_default_button; libinput_device_config_scroll_get_default_method; @@ -35,6 +39,7 @@ global: libinput_device_config_tap_get_finger_count; libinput_device_config_tap_set_enabled; libinput_device_get_context; + libinput_device_get_device_group; libinput_device_get_id_product; libinput_device_get_id_vendor; libinput_device_get_name; @@ -44,9 +49,13 @@ global: libinput_device_get_sysname; libinput_device_get_udev_device; libinput_device_get_user_data; - libinput_device_has_button; + libinput_device_group_get_user_data; + libinput_device_group_ref; + libinput_device_group_set_user_data; + libinput_device_group_unref; libinput_device_has_capability; libinput_device_led_update; + libinput_device_pointer_has_button; libinput_device_ref; libinput_device_set_seat_logical_name; libinput_device_set_user_data; @@ -118,21 +127,3 @@ global: local: *; }; - -LIBINPUT_0.9.0 { -global: - libinput_device_config_click_get_default_method; - libinput_device_config_click_get_method; - libinput_device_config_click_get_methods; - libinput_device_config_click_set_method; -} LIBINPUT_0.8.0; - -LIBINPUT_0.11.0 { - libinput_device_get_device_group; - libinput_device_group_get_user_data; - libinput_device_group_ref; - libinput_device_group_set_user_data; - libinput_device_group_unref; - - libinput_device_pointer_has_button; -} LIBINPUT_0.9.0; |