ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/forwards.h
Revision: 1.1
Committed: Thu Jul 19 08:24:50 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# Content
1 #ifndef FORWARDS_H
2 #define FORWARDS_H
3
4 /* Make it possible to use pointers to these types everywhere
5 * (for structures used in multiple header files) */
6 struct user_t;
7
8 struct server_t;
9
10 struct channel_t;
11 struct chanuser_t;
12 struct chanban_t;
13
14 struct operclass_t;
15 struct soper_t;
16 struct myuser_t;
17 struct mynick_t;
18 struct mychan_t;
19
20 struct service_t;
21
22 struct sourceinfo_t;
23
24 struct config_file_t;
25 struct config_entry_t;
26
27 #endif