0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-10 10:41:36 +02:00
construct/include/cache.h
Jilles Tjoelker 85550587fb Unbreak /quote help stats as an oper (all where oper and user help are different).
Remove symlink optimization, so helpfiles equal for
opers and users are loaded into memory twice, which
is not an issue.
2008-03-29 23:38:22 +01:00

51 lines
973 B
C

/* $Id: cache.h 6 2005-09-10 01:02:21Z nenolod $ */
#ifndef INCLUDED_CACHE_H
#define INCLUDED_CACHE_H
#include "client.h"
#include "tools.h"
#define HELP_MAX 100
#define CACHELINELEN 81
#define CACHEFILELEN 30
#define HELP_USER 0x001
#define HELP_OPER 0x002
struct Client;
struct cachefile
{
char name[CACHEFILELEN];
dlink_list contents;
int flags;
};
struct cacheline
{
char data[CACHELINELEN];
dlink_node linenode;
};
extern struct cachefile *user_motd;
extern struct cachefile *oper_motd;
extern struct cacheline *emptyline;
extern char user_motd_changed[MAX_DATE_STRING];
extern void init_cache(void);
extern struct cachefile *cache_file(const char *, const char *, int);
extern void free_cachefile(struct cachefile *);
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