mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 14:56:23 +00:00
Removed jabber.c dependency on ui.h
This commit is contained in:
@@ -171,6 +171,27 @@ prof_handle_failed_login(void)
|
||||
log_info("disconnected");
|
||||
}
|
||||
|
||||
void
|
||||
prof_handle_room_history(const char * const room_jid, const char * const nick,
|
||||
GTimeVal tv_stamp, const char * const message)
|
||||
{
|
||||
win_show_room_history(room_jid, nick, tv_stamp, message);
|
||||
}
|
||||
|
||||
void
|
||||
prof_handle_room_message(const char * const room_jid, const char * const nick,
|
||||
const char * const message)
|
||||
{
|
||||
win_show_room_message(room_jid, nick, message);
|
||||
}
|
||||
|
||||
void
|
||||
prof_handle_chat_room_member(const char * const room_jid,
|
||||
const char * const nick)
|
||||
{
|
||||
win_show_chat_room_member(room_jid, nick);
|
||||
}
|
||||
|
||||
void
|
||||
prof_handle_contact_online(char *contact, char *show, char *status)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user