This implements configuration, connection, sending and receiving IMs in the simplest possible way. Lots and lots of cases are not handled.
12 lines
130 B
C
12 lines
130 B
C
#include <debug.h>
|
|
|
|
#include "libdelta.h"
|
|
#include "util.h"
|
|
|
|
void
|
|
debug(const char *str)
|
|
{
|
|
purple_debug_info(PLUGIN_ID, str);
|
|
}
|
|
|