Changeset d88c92a for protocols/nogaim.h


Ignore:
Timestamp:
2010-12-06T00:03:49Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d76e12f
Parents:
a429907
Message:

First bits of CTCP support to contacts. (Try /CTCP VERSION on a Jabber
contact.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.h

    ra429907 rd88c92a  
    136136};
    137137
     138struct buddy_action {
     139        char *name;
     140        char *description;
     141};
     142
    138143struct prpl {
    139144        int options;
     
    257262        void (* buddy_data_free) (struct bee_user *bu);
    258263       
     264        GList *(* buddy_action_list) (struct bee_user *bu);
     265        void *(* buddy_action) (struct bee_user *bu, const char *action, char * const args[], void *data);
     266       
    259267        /* Some placeholders so eventually older plugins may cooperate with newer BitlBees. */
    260268        void *resv1;
     
    316324G_MODULE_EXPORT void imcb_rename_buddy( struct im_connection *ic, const char *handle, const char *realname );
    317325G_MODULE_EXPORT void imcb_buddy_nick_hint( struct im_connection *ic, const char *handle, const char *nick );
     326G_MODULE_EXPORT void imcb_buddy_action_response( bee_user_t *bu, const char *action, char * const args[], void *data );
    318327
    319328G_MODULE_EXPORT void imcb_buddy_typing( struct im_connection *ic, const char *handle, uint32_t flags );
Note: See TracChangeset for help on using the changeset viewer.