Mercurial > pidgin
annotate src/prpl.h @ 1082:13df4e342cff
[gaim-migrate @ 1092]
oops
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Fri, 10 Nov 2000 23:26:57 +0000 |
| parents | 2fe18b2d6105 |
| children | 12478dd1e9d7 |
| 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 | |
|
1032
643a4d81c18a
[gaim-migrate @ 1042]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1030
diff
changeset
|
42 /* returns the XPM associated with the given user class */ |
|
1030
38452403563b
[gaim-migrate @ 1040]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1003
diff
changeset
|
43 char **(* list_icon)(int); |
|
1032
643a4d81c18a
[gaim-migrate @ 1042]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1030
diff
changeset
|
44 /* returns a GtkMenu * for use in the buddy list */ |
|
643a4d81c18a
[gaim-migrate @ 1042]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1030
diff
changeset
|
45 void (* action_menu)(GtkWidget *, struct gaim_connection *, char *); |
|
1075
2fe18b2d6105
[gaim-migrate @ 1085]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1064
diff
changeset
|
46 /* fuck UI plugins */ |
|
2fe18b2d6105
[gaim-migrate @ 1085]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1064
diff
changeset
|
47 void (* user_opts)(GtkWidget *, struct aim_user *); |
|
1030
38452403563b
[gaim-migrate @ 1040]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1003
diff
changeset
|
48 |
| 981 | 49 void (* login) (struct aim_user *); |
| 50 void (* close) (struct gaim_connection *); | |
| 51 void (* send_im) (struct gaim_connection *, char *who, char *message, int away); | |
| 52 void (* set_info) (struct gaim_connection *, char *info); | |
| 53 void (* get_info) (struct gaim_connection *, char *who); | |
| 54 void (* set_away) (struct gaim_connection *, char *message); | |
| 55 void (* get_away_msg) (struct gaim_connection *, char *who); | |
| 56 void (* set_dir) (struct gaim_connection *, char *first, | |
| 57 char *middle, | |
| 58 char *last, | |
| 59 char *maiden, | |
| 60 char *city, | |
| 61 char *state, | |
| 62 char *country, | |
| 63 int web); | |
| 64 void (* get_dir) (struct gaim_connection *, char *who); | |
| 65 void (* dir_search) (struct gaim_connection *, char *first, | |
| 66 char *middle, | |
| 67 char *last, | |
| 68 char *maiden, | |
| 69 char *city, | |
| 70 char *state, | |
| 71 char *country, | |
| 72 char *email); | |
| 73 void (* set_idle) (struct gaim_connection *, int idletime); | |
| 74 void (* change_passwd) (struct gaim_connection *, char *old, char *new); | |
| 75 void (* add_buddy) (struct gaim_connection *, char *name); | |
| 76 void (* add_buddies) (struct gaim_connection *, GList *buddies); | |
| 77 void (* remove_buddy) (struct gaim_connection *, char *name); | |
| 78 void (* add_permit) (struct gaim_connection *, char *name); | |
| 79 void (* add_deny) (struct gaim_connection *, char *name); | |
|
1038
daad2440a642
[gaim-migrate @ 1048]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1032
diff
changeset
|
80 void (* rem_permit) (struct gaim_connection *, char *name); |
|
daad2440a642
[gaim-migrate @ 1048]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1032
diff
changeset
|
81 void (* rem_deny) (struct gaim_connection *, char *name); |
|
daad2440a642
[gaim-migrate @ 1048]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1032
diff
changeset
|
82 void (* set_permit_deny)(struct gaim_connection *); |
| 981 | 83 void (* warn) (struct gaim_connection *, char *who, int anonymous); |
| 84 void (* accept_chat) (struct gaim_connection *, int id); | |
| 85 void (* join_chat) (struct gaim_connection *, int id, char *name); | |
| 86 void (* chat_invite) (struct gaim_connection *, int id, char *who, char *message); | |
| 87 void (* chat_leave) (struct gaim_connection *, int id); | |
| 88 void (* chat_whisper) (struct gaim_connection *, int id, char *who, char *message); | |
| 89 void (* chat_send) (struct gaim_connection *, int id, char *message); | |
| 90 | |
| 91 void (* keepalive) (struct gaim_connection *); | |
| 92 }; | |
| 93 | |
| 94 extern GSList *protocols; | |
| 95 | |
|
1000
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
96 /* this is mostly just for aim.c, when it initializes the protocols */ |
| 981 | 97 void static_proto_init(); |
| 98 | |
|
1000
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
99 /* 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
|
100 void load_protocol(proto_init); |
|
1047
ece2d1543b20
[gaim-migrate @ 1057]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1038
diff
changeset
|
101 void unload_protocol(struct prpl *); |
|
1000
91b7377e7b45
[gaim-migrate @ 1010]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
981
diff
changeset
|
102 |
| 981 | 103 struct prpl *find_prpl(int); |
| 104 | |
|
1064
b0b40b5faede
[gaim-migrate @ 1074]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1047
diff
changeset
|
105 void do_ask_dialog(const char *, void *, void *, void *); |
| 981 | 106 #endif |
