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/bee_user.c

    r3a9b123 r573dab0  
    194194                imcb_log( ic, "Message from unknown handle %s:\n%s", handle, msg );
    195195}
     196
     197void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags )
     198{
     199        bee_user_t *bu;
     200       
     201        if( ic->bee->ui->user_typing &&
     202            ( bu = bee_user_by_handle( ic->bee, ic, handle ) ) )
     203        {
     204                ic->bee->ui->user_typing( ic->bee, bu, flags );
     205        }
     206}
Note: See TracChangeset for help on using the changeset viewer.