mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-24 19:16:21 +00:00
@@ -45,7 +45,7 @@ char* otr_on_message_recv(const char * const barejid, const char * const resourc
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
gboolean otr_on_message_send(ProfChatWin *chatwin, const char * const message)
|
||||
gboolean otr_on_message_send(ProfChatWin *chatwin, const char * const message, gboolean request_receipt)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@@ -164,7 +164,8 @@ void privwin_incoming_msg(ProfPrivateWin *privatewin, const char * const message
|
||||
void ui_disconnected(void) {}
|
||||
void chatwin_recipient_gone(ProfChatWin *chatwin) {}
|
||||
|
||||
void chatwin_outgoing_msg(ProfChatWin *chatwin, const char * const message, char *id, prof_enc_t enc_mode) {}
|
||||
void chatwin_outgoing_msg(ProfChatWin *chatwin, const char * const message, char *id, prof_enc_t enc_mode,
|
||||
gboolean request_receipt) {}
|
||||
void chatwin_outgoing_carbon(ProfChatWin *chatwin, const char * const message, prof_enc_t enc_mode) {}
|
||||
void privwin_outgoing_msg(ProfPrivateWin *privwin, const char * const message) {}
|
||||
|
||||
|
||||
@@ -91,21 +91,22 @@ connection_supports(const char *const feature)
|
||||
}
|
||||
|
||||
// message functions
|
||||
char* message_send_chat(const char * const barejid, const char * const msg, const char *const oob_url)
|
||||
char* message_send_chat(const char * const barejid, const char * const msg, const char *const oob_url,
|
||||
gboolean request_receipt)
|
||||
{
|
||||
check_expected(barejid);
|
||||
check_expected(msg);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
char* message_send_chat_otr(const char * const barejid, const char * const msg)
|
||||
char* message_send_chat_otr(const char * const barejid, const char * const msg, gboolean request_receipt)
|
||||
{
|
||||
check_expected(barejid);
|
||||
check_expected(msg);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
char* message_send_chat_pgp(const char * const barejid, const char * const msg)
|
||||
char* message_send_chat_pgp(const char * const barejid, const char * const msg, gboolean request_receipt)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
@@ -213,6 +214,10 @@ EntityCapabilities* caps_lookup(const char * const jid)
|
||||
void caps_close(void) {}
|
||||
void caps_destroy(EntityCapabilities *caps) {}
|
||||
void caps_reset_ver(void) {}
|
||||
gboolean caps_jid_has_feature(const char *const jid, const char *const feature)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
gboolean bookmark_add(const char *jid, const char *nick, const char *password, const char *autojoin_str)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user