diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/wlr/types/wlr_seat.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index d3d3e00d..d267924c 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -125,11 +125,20 @@ struct wlr_seat {  		struct wl_signal keyboard_grab_begin;  		struct wl_signal keyboard_grab_end; + +		struct wl_signal request_set_cursor;  	} events;  	void *data;  }; +struct wlr_seat_pointer_request_set_cursor_event { +	struct wl_client *client; +	struct wlr_seat_handle *seat_handle; +	struct wlr_surface *surface; +	int32_t hotspot_x, hotspot_y; +}; +  /**   * Allocates a new wlr_seat and adds a wl_seat global to the display.   */ | 
