mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 15:26:22 +00:00
19 lines
404 B
C
19 lines
404 B
C
/*
|
|
* presence.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_PRESENCE_H
|
|
#define XMPP_PRESENCE_H
|
|
|
|
void presence_handlers_init(void);
|
|
void presence_sub_requests_init(void);
|
|
void presence_sub_requests_destroy(void);
|
|
void presence_clear_sub_requests(void);
|
|
|
|
#endif
|