Light code cleanup #8

Manually merged
jabber.developer merged 3 commits from ref/light-cleanup into master 2026-06-16 11:33:10 +00:00
9 changed files with 20 additions and 2 deletions
Showing only changes of commit bfd7064a40 - Show all commits

View File

@@ -10,6 +10,8 @@
#ifndef EVENT_COMMON_H #ifndef EVENT_COMMON_H
#define EVENT_COMMON_H #define EVENT_COMMON_H
#include "glib.h"
void ev_disconnect_cleanup(void); void ev_disconnect_cleanup(void);
void ev_inc_connection_counter(void); void ev_inc_connection_counter(void);
void ev_reset_connection_counter(void); void ev_reset_connection_counter(void);

View File

@@ -10,6 +10,8 @@
#ifndef PGP_GPG_H #ifndef PGP_GPG_H
#define PGP_GPG_H #define PGP_GPG_H
#include "glib.h"
typedef struct pgp_key_t typedef struct pgp_key_t
{ {
gchar* id; gchar* id;

View File

@@ -10,8 +10,10 @@
#ifndef BOOKMARK_IGNORE_H #ifndef BOOKMARK_IGNORE_H
#define BOOKMARK_IGNORE_H #define BOOKMARK_IGNORE_H
void bookmark_ignore_on_connect(const char* const barejid); #include "xmpp/xmpp.h"
void bookmark_ignore_on_disconnect(void);
void bookmark_ignore_on_connect();
void bookmark_ignore_on_disconnect();
gboolean bookmark_ignored(Bookmark* bookmark); gboolean bookmark_ignored(Bookmark* bookmark);
gchar** bookmark_ignore_list(gsize* len); gchar** bookmark_ignore_list(gsize* len);
void bookmark_ignore_add(const char* const barejid); void bookmark_ignore_add(const char* const barejid);

View File

@@ -10,6 +10,8 @@
#ifndef UI_TITLEBAR_H #ifndef UI_TITLEBAR_H
#define UI_TITLEBAR_H #define UI_TITLEBAR_H
#include "glib.h"
void create_title_bar(void); void create_title_bar(void);
void free_title_bar(void); void free_title_bar(void);
void title_bar_update_virtual(void); void title_bar_update_virtual(void);

View File

@@ -10,6 +10,8 @@
#ifndef XMPP_BLOCKING_H #ifndef XMPP_BLOCKING_H
#define XMPP_BLOCKING_H #define XMPP_BLOCKING_H
#include <strophe.h>
void blocking_request(void); void blocking_request(void);
int blocked_set_handler(xmpp_stanza_t* stanza); int blocked_set_handler(xmpp_stanza_t* stanza);
int reporting_set_handler(xmpp_stanza_t* stanza); int reporting_set_handler(xmpp_stanza_t* stanza);

View File

@@ -10,6 +10,8 @@
#ifndef XMPP_IQ_H #ifndef XMPP_IQ_H
#define XMPP_IQ_H #define XMPP_IQ_H
#include <strophe.h>
typedef int (*ProfIqCallback)(xmpp_stanza_t* const stanza, void* const userdata); typedef int (*ProfIqCallback)(xmpp_stanza_t* const stanza, void* const userdata);
typedef void (*ProfIqFreeCallback)(void* userdata); typedef void (*ProfIqFreeCallback)(void* userdata);

View File

@@ -7,6 +7,8 @@
* SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception * SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception
*/ */
#include "glib.h"
/*! /*!
* \page OX OX Implementation * \page OX OX Implementation
* *

View File

@@ -10,6 +10,9 @@
#ifndef XMPP_ROSTER_H #ifndef XMPP_ROSTER_H
#define XMPP_ROSTER_H #define XMPP_ROSTER_H
#include "glib.h"
#include <strophe.h>
void roster_request(void); void roster_request(void);
void roster_set_handler(xmpp_stanza_t* const stanza); void roster_set_handler(xmpp_stanza_t* const stanza);
void roster_result_handler(xmpp_stanza_t* const stanza); void roster_result_handler(xmpp_stanza_t* const stanza);

View File

@@ -12,6 +12,7 @@
#include "ui/win_types.h" #include "ui/win_types.h"
#include "xmpp/vcard.h" #include "xmpp/vcard.h"
#include <strophe.h>
vCard* vcard_new(); vCard* vcard_new();
void vcard_free(vCard* vcard); void vcard_free(vCard* vcard);