summaryrefslogtreecommitdiff
path: root/announce.h
diff options
context:
space:
mode:
authorDavid Härdeman <david@hardeman.nu>2020-06-22 10:50:15 +0200
committerDavid Härdeman <david@hardeman.nu>2020-06-22 10:50:15 +0200
commit31afd2aaaeb76a12e232eab0fb6a550b73948737 (patch)
tree7125a54d09904eef6c558a682cff0a7976529fad /announce.h
parent41dc97f5d0dbcfe4399656c9aabb597f6366ca23 (diff)
Make struct cfg global and make the corresponding changes throughout
Diffstat (limited to 'announce.h')
-rw-r--r--announce.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/announce.h b/announce.h
index 6f805f1..c4bd8e3 100644
--- a/announce.h
+++ b/announce.h
@@ -1,14 +1,14 @@
#ifndef fooannouncehfoo
#define fooannouncehfoo
-void announce_refdump(struct announce *aev);
+void announce_refdump();
-void announce_delete(struct cfg *cfg);
+void announce_delete();
-void announce_stop(struct announce *aev);
+void announce_stop();
-void announce_start(struct announce *aev);
+void announce_start();
-void announce_init(struct cfg *cfg);
+void announce_init();
#endif