]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/cache.h
libcharybdis includes gone.
[irc/rqf/shadowircd.git] / include / cache.h
index f60b5b9a9847b9a84c3c81234da781f285e22c89..9fada168a5483c5293980e8f798d02a86adc5932 100644 (file)
@@ -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