All checks were successful
CI / Check coding style (push) Successful in 29s
CI / Check spelling (push) Successful in 16s
CI / Linux (debian) (push) Successful in 9m35s
CI / Linux (arch) (push) Successful in 11m27s
CI / Linux (fedora) (push) Successful in 13m57s
CI / Linux (ubuntu) (push) Successful in 11m21s
- Update formatting for stub files - Update docs While original project, Profanity, provides valuable basis for this fork, we are not affiliated with the upstream. This commit is updating documentation to reflect accurate information. The docs are going to be updated further once the website is created. Reviewed-on: devs/profanity#5 Co-authored-by: Jabber Developer <jabber.developer@jabber.space> Co-committed-by: Jabber Developer <jabber.developer@jabber.space>
125 lines
1.6 KiB
C
125 lines
1.6 KiB
C
#include <glib.h>
|
|
|
|
#include "config/account.h"
|
|
#include "ui/ui.h"
|
|
|
|
void
|
|
omemo_init(void)
|
|
{
|
|
}
|
|
|
|
char*
|
|
omemo_fingerprint_autocomplete(const char* const search_str, gboolean previous)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
omemo_fingerprint_autocomplete_reset(void)
|
|
{
|
|
}
|
|
|
|
char*
|
|
omemo_format_fingerprint(const char* const fingerprint)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
omemo_generate_crypto_materials(ProfAccount* account)
|
|
{
|
|
}
|
|
|
|
gboolean
|
|
omemo_automatic_start(const char* const jid)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
gboolean
|
|
omemo_is_trusted_identity(const char* const jid, const char* const fingerprint)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
GList*
|
|
omemo_known_device_identities(const char* const jid)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
gboolean
|
|
omemo_loaded(void)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
void
|
|
omemo_on_connect(ProfAccount* account)
|
|
{
|
|
}
|
|
void
|
|
omemo_on_disconnect(void)
|
|
{
|
|
}
|
|
|
|
char*
|
|
omemo_on_message_send(ProfWin* win, const char* const message, gboolean request_receipt, gboolean muc)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
char*
|
|
omemo_own_fingerprint(gboolean formatted)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
omemo_start_muc_sessions(const char* const roomjid)
|
|
{
|
|
}
|
|
void
|
|
omemo_start_session(const char* const barejid)
|
|
{
|
|
}
|
|
void
|
|
omemo_trust(const char* const jid, const char* const fingerprint_formatted)
|
|
{
|
|
}
|
|
void
|
|
omemo_untrust(const char* const jid, const char* const fingerprint_formatted)
|
|
{
|
|
}
|
|
void
|
|
omemo_devicelist_publish(GList* device_list)
|
|
{
|
|
}
|
|
void
|
|
omemo_publish_crypto_materials(void)
|
|
{
|
|
}
|
|
void
|
|
omemo_start_sessions(void)
|
|
{
|
|
}
|
|
|
|
char*
|
|
omemo_encrypt_file(FILE* in, FILE* out, off_t file_size, int* gcry_res)
|
|
{
|
|
return NULL;
|
|
};
|
|
void omemo_free(void* a) {};
|
|
|
|
uint32_t
|
|
omemo_device_id()
|
|
{
|
|
return 123;
|
|
}
|
|
|
|
char*
|
|
omemo_qrcode_str()
|
|
{
|
|
return NULL;
|
|
}
|