comparison plugins/SIGNALS @ 2359:ad56a93661fc

[gaim-migrate @ 2372] hi usa committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 26 Sep 2001 00:53:49 +0000
parents a49e8f1afbc4
children 7239a392486c
comparison
equal deleted inserted replaced
2358:202222f100b6 2359:ad56a93661fc
301 'who' is who sent the message. 301 'who' is who sent the message.
302 'what' is what was sent. 302 'what' is what was sent.
303 'flags' is flags on the message. 303 'flags' is flags on the message.
304 304
305 event_chat_send_invite: 305 event_chat_send_invite:
306 struct gaim_connection *gc, int id, char *who, char *msg 306 struct gaim_connection *gc, int id, char *who, char **msg
307 307
308 This is called just before you're about to invite someone. It's 308 This is called just before you're about to invite someone. It's
309 useful for if you want to pass someone a key so that they can 309 useful for if you want to pass someone a key so that they can
310 participate in a group encrypted chat (ahem). 310 participate in a group encrypted chat (ahem).
311 311
312 'gc' is the connection the invite is sent on. 312 'gc' is the connection the invite is sent on.
313 'id' is the id of the room you're inviting them to. 313 'id' is the id of the room you're inviting them to.
314 'who' is who you're inviting. 314 'who' is who you're inviting.
315 'msg' is the message they'll receive when they're invited. 315 'msg' is the message they'll receive when they're invited. It may be
316 NULL. Setting this to NULL won't stop the invitation from going thru.