aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/client.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-05-14 18:02:25 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-05-14 18:08:24 +0200
commitb09122e98c0156db0da4eac6d8819f1c41ecd9e1 (patch)
tree672531e000990214fc692c37d71e1ad82c8584f9 /src/client.h
parentmsg: enforce at least one word (diff)
downloadcimple-b09122e98c0156db0da4eac6d8819f1c41ecd9e1.tar.gz
cimple-b09122e98c0156db0da4eac6d8819f1c41ecd9e1.zip
msg: add functions for one-off communication
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.h b/src/client.h
index 5bc3f5c..471a7be 100644
--- a/src/client.h
+++ b/src/client.h
@@ -15,9 +15,9 @@ struct settings {
struct client;
-int client_create(struct client **, const struct settings *);
+int client_create(struct client **);
void client_destroy(struct client *);
-int client_main(const struct client *, const char **argv);
+int client_main(const struct client *, const struct settings *, const char **argv);
#endif