From: Sean E. <sea...@us...> - 2002-08-28 02:38:21
|
Update of /cvsroot/gaim/gaim/plugins In directory usw-pr-cvs1:/tmp/cvs-serv10106/plugins Modified Files: PERL-HOWTO Log Message: A few patches. Brian--tell me what your last name is, and I'll put it in. ;) Index: PERL-HOWTO =================================================================== RCS file: /cvsroot/gaim/gaim/plugins/PERL-HOWTO,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- PERL-HOWTO 29 May 2002 01:44:39 -0000 1.14 +++ PERL-HOWTO 28 Aug 2002 02:38:18 -0000 1.15 @@ -131,10 +131,15 @@ so that gaim knows what the changes are. Perl scripts can short-circuit certain events (namely event_im_send, - event_im_recv, event_chat_send, and event_chat_recv). To short-circuit an - event simply return a non-0 value. This will cause all subsequent scripts - and the event itself to never happen (i.e. the user won't see it happen, - and _send events won't actually send). + event_im_recv, event_chat_send, event_chat_recv and event_set_info). To + short-circuit an event simply return a non-0 value. This will cause all + subsequent scripts and the event itself to never happen (i.e. the user + won't see it happen, and _send events won't actually send). + +GAIM::remove_event_handler(event, function) + This removes the event handler for the specified event that + calls "function" as its handler. The event handler must have been + previously added with GAIM::add_event_handler. GAIM::add_timeout_handler(integer, function, args) This calls function after integer number of seconds. It only calls function |