Changeset 573dab0 for protocols/nogaim.c


Ignore:
Timestamp:
2010-04-13T10:20:04Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
81186cab
Parents:
3a9b123
Message:

Incoming typing notifications.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r3a9b123 r573dab0  
    525525        query_add( (irc_t *) ic->bee->ui_data, ic, s,
    526526                   imcb_ask_add_cb_yes, imcb_ask_add_cb_no, data );
    527 }
    528 
    529 void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags )
    530 {
    531 #if 0
    532         user_t *u;
    533        
    534         if( !set_getbool( &ic->bee->set, "typing_notice" ) )
    535                 return;
    536        
    537         if( ( u = user_findhandle( ic, handle ) ) )
    538         {
    539                 char buf[256];
    540                
    541                 g_snprintf( buf, 256, "\1TYPING %d\1", ( flags >> 8 ) & 3 );
    542                 irc_privmsg( ic->irc, u, "PRIVMSG", ic->irc->nick, NULL, buf );
    543         }
    544 #endif
    545527}
    546528
Note: See TracChangeset for help on using the changeset viewer.