build: add missing includes to header files

This change adds necessary `#include` directives that were previously
omitted in some header files. Without these includes, compilation
could fail or produce undefined behavior when the headers are used
in isolation (i.e., before their dependencies are included elsewhere).

Ensures better modularity and reliability of header usage.
This commit is contained in:
2025-06-24 23:56:25 +02:00
committed by jabber.developer
parent e33c7a477d
commit b8e1a63f93
9 changed files with 18 additions and 0 deletions

View File

@@ -36,6 +36,8 @@
#ifndef BOOKMARK_IGNORE_H
#define BOOKMARK_IGNORE_H
#include "xmpp/xmpp.h"
void bookmark_ignore_on_connect();
void bookmark_ignore_on_disconnect();
gboolean bookmark_ignored(Bookmark* bookmark);