| 20 | #include "server.h" |
| 21 | |
| 22 | static void |
| 23 | pointer_destroy_notify(struct wl_listener *listener, void *UNUSED(data)) |
| 24 | { |
| 25 | struct kiwmi_pointer *pointer = |
| 26 | wl_container_of(listener, pointer, device_destroy); |
| 27 | |
| 28 | pointer_destroy(pointer); |
| 29 | } |
| 30 | |
| 31 | struct kiwmi_pointer * |
| 32 | pointer_create(struct kiwmi_server *server, struct wlr_input_device *device) |
nothing calls this directly
no test coverage detected