29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
|
|
From 49d1846b55bcd4b54a8b8eb2b4ae0b29be0b36a1 Mon Sep 17 00:00:00 2001
|
||
|
|
From: bzg1107 <preloyalwhite@163.com>
|
||
|
|
Date: Tue, 11 Jan 2022 17:36:03 +0800
|
||
|
|
Subject: [PATCH] fix wl_proxy_marshal_flags
|
||
|
|
|
||
|
|
---
|
||
|
|
widget/gtk/mozwayland/mozwayland.c | 5 +++++
|
||
|
|
1 file changed, 5 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/widget/gtk/mozwayland/mozwayland.c b/widget/gtk/mozwayland/mozwayland.c
|
||
|
|
index 5cea1c5..bbf97a5 100644
|
||
|
|
--- a/widget/gtk/mozwayland/mozwayland.c
|
||
|
|
+++ b/widget/gtk/mozwayland/mozwayland.c
|
||
|
|
@@ -41,6 +41,11 @@ MOZ_EXPORT void wl_proxy_marshal(struct wl_proxy* p, uint32_t opcode, ...) {}
|
||
|
|
MOZ_EXPORT void wl_proxy_marshal_array(struct wl_proxy* p, uint32_t opcode,
|
||
|
|
union wl_argument* args) {}
|
||
|
|
|
||
|
|
+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;
|
||
|
|
+}
|
||
|
|
+
|
||
|
|
MOZ_EXPORT struct wl_proxy* wl_proxy_create(
|
||
|
|
struct wl_proxy* factory, const struct wl_interface* interface) {
|
||
|
|
return NULL;
|
||
|
|
--
|
||
|
|
2.30.0
|
||
|
|
|