Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / include / h.h
1 /*
2  * IRC - Internet Relay Chat, include/h.h
3  * Copyright (C) 1996 - 1997 Carlo Wood
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #ifndef H_H
21 #define H_H
22
23 /* Typedefs */
24
25 typedef struct Client aClient;
26 typedef struct Server aServer;
27 typedef struct User anUser;
28 typedef struct Channel aChannel;
29 typedef struct SMode Mode;
30 typedef struct ConfItem aConfItem;
31 typedef struct Message aMessage;
32 typedef struct MessageTree aMessageTree;
33 typedef struct Gline aGline;
34 typedef struct ListingArgs aListingArgs;
35 typedef struct MotdItem aMotdItem;
36 typedef struct trecord atrecord;
37 typedef unsigned int snomask_t;
38 typedef struct ConfClass aConfClass;
39 typedef struct hashentry aHashEntry;
40 typedef struct SLink Link;
41 typedef struct DSlink Dlink;
42 typedef struct Whowas aWhowas;
43
44 #include "s_debug.h"
45
46 #endif /* H_H */