Blame


1 d23d2886 2023-07-30 op /* $Id: icb.h,v 1.3 2015/08/21 19:01:12 dhartmei Exp $ */
2 d23d2886 2023-07-30 op
3 d23d2886 2023-07-30 op #ifndef _ICB_H_
4 d23d2886 2023-07-30 op #define _ICB_H_
5 d23d2886 2023-07-30 op
6 d23d2886 2023-07-30 op void icb_init(void);
7 d23d2886 2023-07-30 op void icb_recv(const char *, unsigned, int, int);
8 d23d2886 2023-07-30 op void icb_send_login(int, const char *, const char *, const char *);
9 d23d2886 2023-07-30 op void icb_send_openmsg(int, const char *);
10 d23d2886 2023-07-30 op void icb_send_privmsg(int, const char *, const char *);
11 d23d2886 2023-07-30 op void icb_send_group(int, const char *);
12 d23d2886 2023-07-30 op void icb_send_list(int);
13 d23d2886 2023-07-30 op void icb_send_names(int, const char *);
14 d23d2886 2023-07-30 op void icb_send_whois(int, const char *);
15 d23d2886 2023-07-30 op void icb_send_who(int, const char *);
16 d23d2886 2023-07-30 op void icb_send_pass(int, const char *);
17 d23d2886 2023-07-30 op void icb_send_topic(int, const char *);
18 d23d2886 2023-07-30 op void icb_send_boot(int, const char *);
19 d23d2886 2023-07-30 op void icb_send_name(int, const char *);
20 d23d2886 2023-07-30 op void icb_send_raw(int, const char *);
21 d23d2886 2023-07-30 op void icb_send_noop(int);
22 d23d2886 2023-07-30 op
23 d23d2886 2023-07-30 op extern int icb_logged_in;
24 d23d2886 2023-07-30 op
25 d23d2886 2023-07-30 op #endif