mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 12:16:21 +00:00
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.
20 lines
397 B
C
20 lines
397 B
C
/*
|
|
* blocking.h
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
|
*
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception
|
|
*/
|
|
|
|
#ifndef XMPP_BLOCKING_H
|
|
#define XMPP_BLOCKING_H
|
|
|
|
#include <strophe.h>
|
|
|
|
void blocking_request(void);
|
|
int blocked_set_handler(xmpp_stanza_t* stanza);
|
|
int reporting_set_handler(xmpp_stanza_t* stanza);
|
|
|
|
#endif
|