mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-31 07:06:21 +00:00
Fix some more untyped APIs
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
This commit is contained in:
@@ -73,7 +73,7 @@ bookmark_ignore_on_connect(const char* const barejid)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
bookmark_ignore_on_disconnect()
|
bookmark_ignore_on_disconnect(void)
|
||||||
{
|
{
|
||||||
free_keyfile(&bookmark_ignore_prof_keyfile);
|
free_keyfile(&bookmark_ignore_prof_keyfile);
|
||||||
bookmark_ignore_keyfile = NULL;
|
bookmark_ignore_keyfile = NULL;
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
#define BOOKMARK_IGNORE_H
|
#define BOOKMARK_IGNORE_H
|
||||||
|
|
||||||
void bookmark_ignore_on_connect(const char* const barejid);
|
void bookmark_ignore_on_connect(const char* const barejid);
|
||||||
void bookmark_ignore_on_disconnect();
|
void bookmark_ignore_on_disconnect(void);
|
||||||
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);
|
||||||
|
|||||||
@@ -490,7 +490,7 @@ cons_show_wins(gboolean unread)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
cons_show_wins_attention()
|
cons_show_wins_attention(void)
|
||||||
{
|
{
|
||||||
ProfWin* console = wins_get_console();
|
ProfWin* console = wins_get_console();
|
||||||
cons_show("");
|
cons_show("");
|
||||||
|
|||||||
@@ -268,7 +268,7 @@ void cons_show_contacts(GSList* list);
|
|||||||
void cons_show_roster(GSList* list);
|
void cons_show_roster(GSList* list);
|
||||||
void cons_show_roster_group(const char* const group, GSList* list);
|
void cons_show_roster_group(const char* const group, GSList* list);
|
||||||
void cons_show_wins(gboolean unread);
|
void cons_show_wins(gboolean unread);
|
||||||
void cons_show_wins_attention();
|
void cons_show_wins_attention(void);
|
||||||
gchar* cons_get_string(ProfConsoleWin* conswin);
|
gchar* cons_get_string(ProfConsoleWin* conswin);
|
||||||
void cons_show_status(const char* const barejid);
|
void cons_show_status(const char* const barejid);
|
||||||
void cons_show_info(PContact pcontact);
|
void cons_show_info(PContact pcontact);
|
||||||
|
|||||||
Reference in New Issue
Block a user