File: irc_client.h

package info (click to toggle)
dircproxy 1.0.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,108 kB
  • ctags: 738
  • sloc: ansic: 9,451; sh: 2,672; makefile: 113; perl: 70
file content (41 lines) | stat: -rw-r--r-- 1,718 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* dircproxy
 * Copyright (C) 2002 Scott James Remnant <scott@netsplit.com>.
 * All Rights Reserved.
 *
 * irc_client.h
 * --
 * @(#) $Id: irc_client.h,v 1.6 2001/12/21 20:15:55 keybuk Exp $
 *
 * This file is distributed according to the GNU General Public
 * License.  For full details, read the top of 'main.c' or the
 * file called COPYING that was distributed with this code.
 */

#ifndef __DIRCPROXY_IRC_CLIENT_H
#define __DIRCPROXY_IRC_CLIENT_H

/* required includes */
#include "irc_net.h"

/* functions */
extern int ircclient_connected(struct ircproxy *);
extern int ircclient_data(struct ircproxy *);
extern int ircclient_change_nick(struct ircproxy *, const char *);
extern int ircclient_nick_changed(struct ircproxy *, const char *);
extern int ircclient_setnickname(struct ircproxy *);
extern int ircclient_checknickname(struct ircproxy *);
extern int ircclient_generate_nick(struct ircproxy *, const char *);
extern int ircclient_change_mode(struct ircproxy *, const char *);
extern int ircclient_close(struct ircproxy *);
extern int ircclient_welcome(struct ircproxy *);
extern int ircclient_send_numeric(struct ircproxy *, short, const char *, ...);
extern int ircclient_send_notice(struct ircproxy *, const char *, ...);
extern int ircclient_send_channotice(struct ircproxy *, const char *,
                                     const char *, ...);
extern int ircclient_send_command(struct ircproxy *, const char *, const char *,
                                  ...);
extern int ircclient_send_selfcmd(struct ircproxy *, const char *, const char *,
                                  ...);
extern int ircclient_send_error(struct ircproxy *, const char *, ...);

#endif /* __DIRCPROXY_IRC_CLIENT_H */