types/wlr_input_device: remove wlr_input_device_destroy

This commit is contained in:
Simon Zeni 2022-03-02 16:48:57 -05:00 committed by Kirill Primak
parent 9d8dc026e5
commit 1bb2631c5c
3 changed files with 3 additions and 44 deletions

View file

@ -61,11 +61,4 @@ void wlr_input_device_init(struct wlr_input_device *wlr_device,
*/
void wlr_input_device_finish(struct wlr_input_device *wlr_device);
/**
* Calls the specialized input device destroy function.
* If the wlr_input_device is not owned by a specialized input device, the
* function will finish the wlr_input_device and free it.
*/
void wlr_input_device_destroy(struct wlr_input_device *dev);
#endif