src/protocols/gg/gg.h

changeset 11414
10b74079ef15
child 12007
bf1190509b70
equal deleted inserted replaced
11413:b8caa38c1d75 11414:10b74079ef15
1 /**
2 * @file gg.h
3 *
4 * gaim
5 *
6 * Copyright (C) 2005 Bartosz Oler <bartosz@bzimage.us>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23
24 #ifndef _GAIM_GG_H
25 #define _GAIM_GG_H
26
27 #include "lib/libgadu.h"
28 #include "search.h"
29
30 typedef struct
31 {
32 char *name;
33 GList *participants;
34
35 } GGPChat;
36
37 typedef struct
38 {
39 char *token_id;
40
41 } GGPToken;
42
43 typedef struct {
44
45 struct gg_session *session;
46 GGPSearchForm *search_form;
47 GGPToken *register_token;
48 GGPToken *chpasswd_token;
49 GList *chats;
50 void *searchresults_window;
51
52 char *tmp_buddy;
53 int chats_count;
54
55 } GGPInfo;
56
57
58 #endif /* _GAIM_GG_H */
59
60 /* vim: set ts=4 sts=0 sw=4 noet: */

mercurial