diff plugins/SIGNALS @ 136:4e91b92f91a7

[gaim-migrate @ 146] Added event_back and event_buddy_back events. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 19 Apr 2000 07:57:20 +0000
parents e277d5f0c1dd
children be408b41c172
line wrap: on
line diff
--- a/plugins/SIGNALS	Wed Apr 19 02:48:47 2000 +0000
+++ b/plugins/SIGNALS	Wed Apr 19 07:57:20 2000 +0000
@@ -2,11 +2,13 @@
 	event_signon = 0,
 	event_signoff,
 	event_away,
+	event_back,
 	event_im_recv,
 	event_im_send,
 	event_buddy_signon,
 	event_buddy_signoff,
 	event_buddy_away,
+	event_buddy_back,
 	event_blist_update
 };
 
@@ -41,7 +43,7 @@
 	(none)
 
 	Note that you can get the username (which would probably be the only
-	useful information here) from other places. (Read gaim.h for details).
+	useful information here) from other places. (Read gaim.h for details.)
 
 event_signoff:
 	(none)
@@ -49,6 +51,12 @@
 event_away:
 	(none)
 
+	Note that the away message that's being used can be retrieved from a
+	global variable. (Read gaim.h for details.)
+
+event_back:
+	(none)
+
 event_im_recv:
 	char **who, char **text
 
@@ -85,6 +93,11 @@
 
 	'who' is who went away.
 
+event_buddy_back:
+	char *who
+
+	'who' is who is no longer away.
+
 event_blist_update:
 	(none)