ekg2  GIT master
autoacts.h
Idź do dokumentacji tego pliku.
1 /*
2  * (C) Copyright 2004-2005 Michal 'GiM' Spadlinski <gim at skrzynka dot pl>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License Version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16  */
17 
18 
19 #ifndef __EKG_PLUGINS_IRC_AUTOACTS_H
20 #define __EKG_PLUGINS_IRC_AUTOACTS_H
21 
23 
24 typedef struct {
26  char *nick;
27  char *kickedby;
28  char *chan;
30 
31 int irc_autorejoin(session_t *s, int when, char *chan);
33 
34 #endif
35 
36 /*
37  * Local Variables:
38  * mode: c
39  * c-file-style: "k&r"
40  * c-basic-offset: 8
41  * indent-tabs-mode: t
42  * End:
43  */
Definition: autoacts.h:22
Definition: chanview.c:59
char * chan
Definition: autoacts.h:28
Definition: sessions.h:127
Definition: autoacts.h:24
Definition: autoacts.h:22
QUERY(irc_onkick_handler)
int irc_autorejoin(session_t *s, int when, char *chan)
Definition: autoacts.c:141
char * kickedby
Definition: autoacts.h:27
session_t * s
Definition: autoacts.h:25
int irc_onkick_handler(void *data, va_list ap)
Definition: autoacts.c:48
#define s
char * nick
Definition: autoacts.h:26