]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/cache.h
dlink -> rb_dlink
[irc/rqf/shadowircd.git] / include / cache.h
index f60b5b9a9847b9a84c3c81234da781f285e22c89..02705e8b1715ce18223775128ef496da739bf2be 100644 (file)
@@ -18,14 +18,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 +43,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