Moved the SilcClient and SilcClientConnection to the public
[silc.git] / lib / silcclient / client.h
1 /*
2
3   client.h 
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2002 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 #ifndef CLIENT_H
21 #define CLIENT_H
22
23 /* Forward declarations */
24 typedef struct SilcClientStruct *SilcClient;
25 typedef struct SilcClientConnectionStruct *SilcClientConnection;
26 typedef struct SilcClientPingStruct SilcClientPing;
27 typedef struct SilcClientAwayStruct SilcClientAway;
28 typedef struct SilcClientKeyAgreementStruct *SilcClientKeyAgreement;
29 typedef struct SilcClientFtpSessionStruct *SilcClientFtpSession;
30 typedef struct SilcClientEntryStruct *SilcClientEntry;
31 typedef struct SilcChannelEntryStruct *SilcChannelEntry;
32 typedef struct SilcServerEntryStruct *SilcServerEntry;
33 typedef struct SilcClientCommandStruct *SilcClientCommand;
34 typedef struct SilcClientCommandContextStruct *SilcClientCommandContext;
35 typedef struct SilcClientCommandReplyContextStruct
36                                            *SilcClientCommandReplyContext;
37 typedef struct SilcChannelUserStruct *SilcChannelUser;
38 typedef struct SilcClientInternalStruct *SilcClientInternal;
39 typedef struct SilcClientConnectionInternalStruct 
40                                            *SilcClientConnectionInternal;
41   
42 #endif