Changeset 15794dc for protocols


Ignore:
Timestamp:
2010-05-02T16:03:41Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bda2975
Parents:
8ad5c34
Message:

Groupchat support "finished".

Named chatrooms are not supported yet. This only adds support for the
"chat with" command and for getting pulled into other people's chats.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/purple/purple.c

    r8ad5c34 r15794dc  
    449449}
    450450
     451void purple_chat_leave( struct groupchat *gc, char *who )
     452{
     453        PurpleConversation *pc = gc->data;
     454       
     455        purple_conversation_destroy( pc );
     456}
     457
    451458void purple_transfer_request( struct im_connection *ic, file_transfer_t *ft, char *handle );
    452459
     
    10721079        funcs.chat_with = purple_chat_with;
    10731080        funcs.chat_invite = purple_chat_invite;
     1081        funcs.chat_leave = purple_chat_leave;
    10741082        funcs.transfer_request = purple_transfer_request;
    10751083       
Note: See TracChangeset for help on using the changeset viewer.