X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/c98390004f4f14cd8215302d77313f81e2546e22..cc200171d7c40be3b204460f9c14d5d37e771866:/include/cache.h?ds=sidebyside diff --git a/include/cache.h b/include/cache.h index f60b5b9..9fada16 100644 --- a/include/cache.h +++ b/include/cache.h @@ -3,7 +3,6 @@ #define INCLUDED_CACHE_H #include "client.h" -#include "tools.h" #define HELP_MAX 100 @@ -18,14 +17,14 @@ struct Client; struct cachefile { char name[CACHEFILELEN]; - dlink_list contents; + rb_dlink_list contents; int flags; }; struct cacheline { char data[CACHELINELEN]; - dlink_node linenode; + rb_dlink_node linenode; }; extern struct cachefile *user_motd; @@ -43,5 +42,9 @@ extern void load_help(void); extern void send_user_motd(struct Client *); extern void send_oper_motd(struct Client *); +struct Dictionary; +extern struct Dictionary *help_dict_oper; +extern struct Dictionary *help_dict_user; + #endif