From 50efd9726d041b00d3966431b8e6957a3739b33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 23 Jul 2024 12:15:37 +0200 Subject: [PATCH] pgo: updated stubs for notification functions --- pgo/pgo.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/pgo/pgo.c b/pgo/pgo.c index 6c13b72a..6dc0dd10 100644 --- a/pgo/pgo.c +++ b/pgo/pgo.c @@ -152,7 +152,7 @@ void ime_disable(struct seat *seat) {} void ime_reset_preedit(struct seat *seat) {} bool -notify_notify(const struct terminal *term, struct notification *notif) +notify_notify(struct terminal *term, struct notification *notif) { return true; } @@ -162,6 +162,22 @@ notify_free(struct terminal *term, struct notification *notif) { } +void +notify_icon_add(struct terminal *term, const char *id, + const char *symbolic_name, const uint8_t *data, + size_t data_sz) +{ +} + +void +notify_icon_del(struct terminal *term, const char *id) +{ +} + +void +notify_icon_free(struct notification_icon *icon) +{ +} void reaper_add(struct reaper *reaper, pid_t pid, reaper_cb cb, void *cb_data) {} void reaper_del(struct reaper *reaper, pid_t pid) {}