xwayland/shell: add wlr_xwayland_shell_v1_surface_from_serial()

This commit is contained in:
Simon Ser 2022-10-18 14:32:30 +02:00 committed by Simon Zeni
parent d19191ff6b
commit 85b37127a6
2 changed files with 19 additions and 0 deletions

View file

@ -70,4 +70,12 @@ void wlr_xwayland_shell_v1_destroy(struct wlr_xwayland_shell_v1 *shell);
void wlr_xwayland_shell_v1_set_client(struct wlr_xwayland_shell_v1 *shell,
struct wl_client *client);
/**
* Get a Wayland surface from an xwayland_shell_v1 serial.
*
* Returns NULL if the serial hasn't been associated with any surface.
*/
struct wlr_surface *wlr_xwayland_shell_v1_surface_from_serial(
struct wlr_xwayland_shell_v1 *shell, uint64_t serial);
#endif