Initial integration with libdeltachat

This implements configuration, connection, sending and receiving IMs in the
simplest possible way. Lots and lots of cases are not handled.
This commit is contained in:
2018-05-02 02:09:59 +01:00
parent 2049e30dc5
commit de213f2b7a
7 changed files with 285 additions and 39 deletions

11
util.c Normal file
View File

@@ -0,0 +1,11 @@
#include <debug.h>
#include "libdelta.h"
#include "util.h"
void
debug(const char *str)
{
purple_debug_info(PLUGIN_ID, str);
}