mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 23:26:23 +00:00
Show message received text for receipts
This commit is contained in:
@@ -202,7 +202,7 @@ void ui_disconnected(void) {}
|
||||
void ui_recipient_gone(const char * const barejid, const char * const resource) {}
|
||||
|
||||
void ui_outgoing_chat_msg(const char * const from, const char * const barejid,
|
||||
const char * const message) {}
|
||||
const char * const message, char *id) {}
|
||||
void ui_outgoing_private_msg(const char * const from, const char * const fulljid,
|
||||
const char * const message) {}
|
||||
|
||||
|
||||
@@ -58,16 +58,18 @@ GList * jabber_get_available_resources(void)
|
||||
}
|
||||
|
||||
// message functions
|
||||
void message_send_chat(const char * const barejid, const char * const msg)
|
||||
char* message_send_chat(const char * const barejid, const char * const msg)
|
||||
{
|
||||
check_expected(barejid);
|
||||
check_expected(msg);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void message_send_chat_encrypted(const char * const barejid, const char * const msg)
|
||||
char* message_send_chat_encrypted(const char * const barejid, const char * const msg)
|
||||
{
|
||||
check_expected(barejid);
|
||||
check_expected(msg);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void message_send_private(const char * const fulljid, const char * const msg) {}
|
||||
|
||||
Reference in New Issue
Block a user