diff options
author | Timo Dritschler <timo.dritschler@kit.edu> | 2014-11-20 17:37:55 +0100 |
---|---|---|
committer | Timo Dritschler <timo.dritschler@kit.edu> | 2014-11-20 17:53:19 +0100 |
commit | 65c2326592b7b1496c468459689904843e443b26 (patch) | |
tree | 7dc907bc82227851bc8e13827ae25cbabcf9ba1f /src/kiro-client.h | |
parent | e71b75575658c435bc77c01ef098336c563af740 (diff) | |
download | kiro-65c2326592b7b1496c468459689904843e443b26.tar.gz kiro-65c2326592b7b1496c468459689904843e443b26.tar.bz2 kiro-65c2326592b7b1496c468459689904843e443b26.tar.xz kiro-65c2326592b7b1496c468459689904843e443b26.zip |
Release KIRO to GitHub under LGPL v2.1
Added kiro_*_free methods to all three units
Added installation guide
Added readme
Added licence file
Diffstat (limited to 'src/kiro-client.h')
-rw-r--r-- | src/kiro-client.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/kiro-client.h b/src/kiro-client.h index b4e1b09..8e99877 100644 --- a/src/kiro-client.h +++ b/src/kiro-client.h @@ -72,11 +72,12 @@ struct _KiroClientClass { /* GObject and GType functions */ GType kiro_client_get_type (void); -KiroClient *kiro_client_new (void); +KiroClient* kiro_client_new (void); -/* client functions */ +void kiro_client_free (KiroClient *client); +/* client functions */ int kiro_client_connect (KiroClient *client, const char *dest_addr, const char *dest_port); int kiro_client_sync (KiroClient *client); |