Mercurial > pidgin
comparison plugins/SIGNALS @ 3461:c11960537fee
[gaim-migrate @ 3510]
obobo
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Wed, 28 Aug 2002 08:13:58 +0000 |
parents | dee7db9e51d4 |
children | 6b0cb60162f4 |
comparison
equal
deleted
inserted
replaced
3460:66c7cca774f5 | 3461:c11960537fee |
---|---|
26 event_draw_menu, | 26 event_draw_menu, |
27 event_im_displayed_sent, | 27 event_im_displayed_sent, |
28 event_im_displayed_rcvd, | 28 event_im_displayed_rcvd, |
29 event_chat_send_invite, | 29 event_chat_send_invite, |
30 event_got_typing, | 30 event_got_typing, |
31 event_del_conversation, | |
31 }; | 32 }; |
32 | 33 |
33 To add a signal handler, call the fuction gaim_signal_connect with the | 34 To add a signal handler, call the fuction gaim_signal_connect with the |
34 following arguments: | 35 following arguments: |
35 | 36 |
329 notifications in direct IMs, and Yahoo can receive them any | 330 notifications in direct IMs, and Yahoo can receive them any |
330 time. | 331 time. |
331 | 332 |
332 'gc' is the connection the typing is sent to. | 333 'gc' is the connection the typing is sent to. |
333 'who' is the person typing to you. | 334 'who' is the person typing to you. |
335 event_del_conversation: | |
336 struct conversation *c | |
337 | |
338 This is called when a conversation window is closed. It is | |
339 called before any memory is deallocated so you are able to | |
340 access any data related to the conversation without breaking | |
341 anything. | |
342 | |
343 'c' is he conversation being closed. |