| 82 event_set_info, |
82 event_set_info, |
| 83 event_draw_menu, |
83 event_draw_menu, |
| 84 event_im_displayed_sent, |
84 event_im_displayed_sent, |
| 85 event_im_displayed_rcvd, |
85 event_im_displayed_rcvd, |
| 86 event_chat_send_invite, |
86 event_chat_send_invite, |
| |
87 event_got_typing, |
| 87 /* any others? it's easy to add... */ |
88 /* any others? it's easy to add... */ |
| 88 }; |
89 }; |
| 89 |
90 |
| 90 struct UI { |
91 struct UI { |
| 91 GIOChannel *channel; |
92 GIOChannel *channel; |
| 190 extern char *event_name(enum gaim_event); |
191 extern char *event_name(enum gaim_event); |
| 191 |
192 |
| 192 /* Functions in server.c */ |
193 /* Functions in server.c */ |
| 193 extern void serv_got_update(struct gaim_connection *, char *, int, int, time_t, time_t, int, guint); |
194 extern void serv_got_update(struct gaim_connection *, char *, int, int, time_t, time_t, int, guint); |
| 194 extern void serv_got_im(struct gaim_connection *, char *, char *, guint32, time_t, gint); |
195 extern void serv_got_im(struct gaim_connection *, char *, char *, guint32, time_t, gint); |
| |
196 extern void serv_got_typing(struct gaim_connection *, char *, int); |
| |
197 extern void serv_got_typing_stopped(struct gaim_connection *, char *); |
| 195 extern void serv_got_eviled(struct gaim_connection *, char *, int); |
198 extern void serv_got_eviled(struct gaim_connection *, char *, int); |
| 196 extern void serv_got_chat_invite(struct gaim_connection *, char *, char *, char *, GList *); |
199 extern void serv_got_chat_invite(struct gaim_connection *, char *, char *, char *, GList *); |
| 197 extern struct conversation *serv_got_joined_chat(struct gaim_connection *, int, char *); |
200 extern struct conversation *serv_got_joined_chat(struct gaim_connection *, int, char *); |
| 198 extern void serv_got_chat_left(struct gaim_connection *, int); |
201 extern void serv_got_chat_left(struct gaim_connection *, int); |
| 199 extern void serv_got_chat_in(struct gaim_connection *, int, char *, int, char *, time_t); |
202 extern void serv_got_chat_in(struct gaim_connection *, int, char *, int, char *, time_t); |