X-Git-Url: https://jfr.im/git/irc/quakenet/newserv.git/blobdiff_plain/c86edd1d9e5994aea33cfad3164e4827e591e7e6..3898f97325dbed800d4b424e68a0c2858b8d8be7:/helpmod2/hban.h diff --git a/helpmod2/hban.h b/helpmod2/hban.h index 0822d053..ea164377 100644 --- a/helpmod2/hban.h +++ b/helpmod2/hban.h @@ -4,11 +4,12 @@ #include #include "../channel/channel.h" - #include "../nick/nick.h" - #include "../lib/sstring.h" +/* Forward declarations */ +struct huser_struct; + typedef struct hban_struct { chanban *real_ban; @@ -34,7 +35,7 @@ hban *hban_get(const char*); int hban_count(void); /* the first parameter is huser* */ -hban *hban_huser(void*, const char*, time_t, int); +hban *hban_huser(struct huser_struct*, const char*, time_t, int); hban *hban_check(nick*);