ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme.h
Revision: 1.5
Committed: Wed Aug 29 21:01:18 2007 UTC (16 years, 9 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.4: +2 -4 lines
Log Message:
- reduced ifdefs by moving __GNUC__ and friends to svsconfig.h
- #define to enum { } in tools.h
- corrected log levels a bit
- made timersub an inline function instead of a macro
- added a simple garbage collection mechanism for postponed freeing of lost
  memory chunks
- enhanced type_traits
- merged inspircd1.2 support with upstream
- reformatting
- renamed TTP to a more "standard" PRItime and STP to PRIsize

File Contents

# Content
1 /*
2 * Copyright © 2003-2004 E. Will et al.
3 * Rights to this code are documented in doc/pod/license.pod.
4 *
5 * Includes most headers usually needed.
6 *
7 * $Id: atheme.h,v 1.4 2007-08-28 17:08:06 pippijn Exp $
8 */
9
10 #ifndef ATHEME_H
11 #define ATHEME_H
12
13 #define E extern
14 #define DLE
15
16 #include "svsconfig.h"
17 #include "stdinc.h"
18 #include "i18n.h"
19 #include "forwards.h"
20 #include "common.h"
21 #include "dlink.h"
22 #include "object.h"
23 #include "event.h"
24 #include "connection.h"
25 #include "linker.h"
26 #include "privs.h"
27 #include "atheme_string.h"
28 #include "common/string.h"
29 #include <common/memory.h>
30 #include "dictionary.h"
31 #include "table.h"
32 #include "servers.h"
33 #include "channels.h"
34 #include "md5.h"
35 #include "match.h"
36 #include "account.h"
37 #include "tools.h"
38 #include "confparse.h"
39 #include "global.h"
40 #include "flags.h"
41 #include "phandler.h"
42 #include "servtree.h"
43 #include "services.h"
44 #include "commandtree.h"
45 #include "users.h"
46 #include "sourceinfo.h"
47
48 #endif /* ATHEME_H */