diff 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
line wrap: on
line diff
--- a/plugins/SIGNALS	Wed Aug 28 07:44:46 2002 +0000
+++ b/plugins/SIGNALS	Wed Aug 28 08:13:58 2002 +0000
@@ -28,6 +28,7 @@
 	event_im_displayed_rcvd,
 	event_chat_send_invite,
 	event_got_typing,
+	event_del_conversation,
 };
 
 To add a signal handler, call the fuction gaim_signal_connect with the
@@ -331,3 +332,12 @@
 
 	'gc' 	is the connection the typing is sent to.
 	'who' 	is the person typing to you.
+event_del_conversation:
+	struct conversation *c
+
+	This is called when a conversation window is closed.  It is
+	called before any memory is deallocated so you are able to
+	access any data related to the conversation without breaking
+	anything.
+
+	'c'	is he conversation being closed.