Mercurial > pidgin.yaz
annotate src/prpl.h @ 1004:69c936ca2b04
[gaim-migrate @ 1014]
arg. i wonder if this works.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 18 Oct 2000 21:28:21 +0000 |
parents | f8f7f3ed2edb |
children | 38452403563b |
rev | line source |
---|---|
981 | 1 /* |
2 * gaim | |
3 * | |
4 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
22 #ifndef _GAIMPRPL_H_ | |
23 #define _GAIMPRPL_H_ | |
24 | |
25 #include "multi.h" | |
26 | |
27 #define PROTO_TOC 0 | |
28 #define PROTO_OSCAR 1 | |
29 #define PROTO_YAHOO 2 | |
30 #define PROTO_ICQ 3 | |
31 #define PROTO_MSN 4 | |
32 #define PROTO_IRC 5 | |
33 #define PROTO_FTP 6 | |
1003
f8f7f3ed2edb
[gaim-migrate @ 1013]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1000
diff
changeset
|
34 #define PROTO_VGATE 7 |
981 | 35 |
1000
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
36 typedef void (*proto_init)(struct prpl *); |
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
37 |
981 | 38 struct prpl { |
39 int protocol; | |
40 char *(* name)(); | |
41 | |
42 void (* login) (struct aim_user *); | |
43 void (* close) (struct gaim_connection *); | |
44 void (* send_im) (struct gaim_connection *, char *who, char *message, int away); | |
45 void (* set_info) (struct gaim_connection *, char *info); | |
46 void (* get_info) (struct gaim_connection *, char *who); | |
47 void (* set_away) (struct gaim_connection *, char *message); | |
48 void (* get_away_msg) (struct gaim_connection *, char *who); | |
49 void (* set_dir) (struct gaim_connection *, char *first, | |
50 char *middle, | |
51 char *last, | |
52 char *maiden, | |
53 char *city, | |
54 char *state, | |
55 char *country, | |
56 int web); | |
57 void (* get_dir) (struct gaim_connection *, char *who); | |
58 void (* dir_search) (struct gaim_connection *, char *first, | |
59 char *middle, | |
60 char *last, | |
61 char *maiden, | |
62 char *city, | |
63 char *state, | |
64 char *country, | |
65 char *email); | |
66 void (* set_idle) (struct gaim_connection *, int idletime); | |
67 void (* change_passwd) (struct gaim_connection *, char *old, char *new); | |
68 void (* add_buddy) (struct gaim_connection *, char *name); | |
69 void (* add_buddies) (struct gaim_connection *, GList *buddies); | |
70 void (* remove_buddy) (struct gaim_connection *, char *name); | |
71 void (* add_permit) (struct gaim_connection *, char *name); | |
72 void (* add_deny) (struct gaim_connection *, char *name); | |
73 void (* warn) (struct gaim_connection *, char *who, int anonymous); | |
74 void (* accept_chat) (struct gaim_connection *, int id); | |
75 void (* join_chat) (struct gaim_connection *, int id, char *name); | |
76 void (* chat_invite) (struct gaim_connection *, int id, char *who, char *message); | |
77 void (* chat_leave) (struct gaim_connection *, int id); | |
78 void (* chat_whisper) (struct gaim_connection *, int id, char *who, char *message); | |
79 void (* chat_send) (struct gaim_connection *, int id, char *message); | |
80 | |
81 void (* keepalive) (struct gaim_connection *); | |
82 }; | |
83 | |
84 extern GSList *protocols; | |
85 | |
1000
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
86 /* this is mostly just for aim.c, when it initializes the protocols */ |
981 | 87 void static_proto_init(); |
88 | |
1000
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
89 /* this is what should actually load the protocol. pass it the protocol's initializer */ |
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
90 void load_protocol(proto_init); |
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
91 |
981 | 92 struct prpl *find_prpl(int); |
93 | |
94 #endif |