mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-29 15:46:22 +00:00
Refactored chat session handling on sending message
This commit is contained in:
@@ -145,16 +145,15 @@ char* jabber_get_account_name(void);
|
||||
GList * jabber_get_available_resources(void);
|
||||
|
||||
// message functions
|
||||
void message_send_chat(const char * const barejid, const char * const resource, const char * const msg,
|
||||
gboolean send_state);
|
||||
void message_send_chat(const char * const barejid, const char * const msg);
|
||||
void message_send_private(const char * const fulljid, const char * const msg);
|
||||
void message_send_groupchat(const char * const roomjid, const char * const msg);
|
||||
void message_send_groupchat_subject(const char * const roomjid, const char * const subject);
|
||||
|
||||
void message_send_inactive(const char * const fulljid);
|
||||
void message_send_composing(const char * const fulljid);
|
||||
void message_send_paused(const char * const fulljid);
|
||||
void message_send_gone(const char * const fulljid);
|
||||
void message_send_inactive(const char * const jid);
|
||||
void message_send_composing(const char * const jid);
|
||||
void message_send_paused(const char * const jid);
|
||||
void message_send_gone(const char * const jid);
|
||||
|
||||
void message_send_invite(const char * const room, const char * const contact,
|
||||
const char * const reason);
|
||||
|
||||
Reference in New Issue
Block a user