Dummy status, login and logout methods

This commit is contained in:
2018-05-02 01:31:18 +01:00
parent 6fcd10ed32
commit 2049e30dc5
3 changed files with 76 additions and 4 deletions

16
delta-connection.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef DELTA_CONNECTION_H
#define DELTA_CONNECTION_H
#include <glib.h>
struct _PurpleConnection;
typedef struct _DeltaConnectionData {
struct _PurpleConnection *pc;
} DeltaConnectionData;
void delta_connection_new(struct _PurpleConnection *pc);
void delta_connection_free(struct _PurpleConnection *pc);
#endif