Merge branch 'foreign-request' into 'master'

Draft: ext-image-capture-request-v1: new protocol

See merge request wlroots/wlroots!5072
This commit is contained in:
navi 2025-08-08 03:26:42 +00:00
commit 906a740186
7 changed files with 407 additions and 14 deletions

View file

@ -0,0 +1,12 @@
#ifndef TYPES_WLR_FOREIGN_TOPLEVEL_H
#define TYPES_WLR_FOREIGN_TOPLEVEL_H
#include <wayland-server-core.h>
#include <wlr/types/wlr_ext_foreign_toplevel_list_v1.h>
struct wl_resource *foreign_toplevel_create_resource_for_client(
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, struct wl_client *client);
void foreign_toplevel_send_details_to_resource(
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, struct wl_resource *resource);
#endif