summaryrefslogtreecommitdiff
path: root/idle.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 /idle.h
parent41dc97f5d0dbcfe4399656c9aabb597f6366ca23 (diff)
Make struct cfg global and make the corresponding changes throughout
Diffstat (limited to 'idle.h')
-rw-r--r--idle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/idle.h b/idle.h
index a0bf5c2..d7e4ab0 100644
--- a/idle.h
+++ b/idle.h
@@ -1,13 +1,13 @@
#ifndef fooidlehfoo
#define fooidlehfoo
-void idle_check_get_player_count(struct cfg *cfg, struct server *server,
+void idle_check_get_player_count(struct server *server,
struct connection *conn);
-void idle_refdump(struct idle *idle);
+void idle_refdump();
-void idle_delete(struct cfg *cfg);
+void idle_delete();
-void idle_init(struct cfg *cfg);
+void idle_init();
#endif