Bug 1745560 - Add missing stub for wl_proxy_marshal_flags, r=stransky

Firefox fails to build against wayland 1.20 because this symbol is missing

Differential Revision: https://phabricator.services.mozilla.com/D133583
This commit is contained in:
Kevin Daudt 2021-12-12 13:38:48 +00:00
parent 93c6fe08a4
commit e157ce6047

View File

@ -200,3 +200,10 @@ MOZ_EXPORT int wl_list_empty(const struct wl_list* list) { return -1; }
MOZ_EXPORT void wl_list_insert_list(struct wl_list* list,
struct wl_list* other) {}
MOZ_EXPORT struct wl_proxy* wl_proxy_marshal_flags(
struct wl_proxy* proxy, uint32_t opcode,
const struct wl_interface* interface, uint32_t version, uint32_t flags,
...) {
return NULL;
}