mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 07:16:22 +00:00
21 lines
562 B
C
21 lines
562 B
C
/*
|
|
* bookmark_ignore.h
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
|
*
|
|
* Copyright (C) 2020 - 2026 Michael Vetter <jubalh@iodoru.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception
|
|
*/
|
|
|
|
#ifndef BOOKMARK_IGNORE_H
|
|
#define BOOKMARK_IGNORE_H
|
|
|
|
void bookmark_ignore_on_connect(const char* const barejid);
|
|
void bookmark_ignore_on_disconnect(void);
|
|
gboolean bookmark_ignored(Bookmark* bookmark);
|
|
gchar** bookmark_ignore_list(gsize* len);
|
|
void bookmark_ignore_add(const char* const barejid);
|
|
void bookmark_ignore_remove(const char* const barejid);
|
|
|
|
#endif
|