Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.h

    rd06eabf rc737ba7  
    6161#define OPT_AWAY        0x00000004
    6262#define OPT_DOES_HTML   0x00000010
    63 #define OPT_LOCALBUDDY  0x00000020 /* For nicks local to one groupchat */
    6463#define OPT_TYPING      0x00000100 /* Some pieces of code make assumptions */
    6564#define OPT_THINKING    0x00000200 /* about these values... Stupid me! */
     
    9291        irc_t *irc;
    9392       
    94         struct groupchat *groupchats;
     93        struct groupchat *conversations;
    9594};
    9695
     
    9897        struct im_connection *ic;
    9998
     99        /* stuff used just for chat */
    100100        GList *in_room;
    101101        GList *ignored;
    102102       
     103        /* BitlBee */
    103104        struct groupchat *next;
    104105        char *channel;
     
    194195G_MODULE_EXPORT struct buddy *imcb_find_buddy( struct im_connection *ic, char *handle );
    195196G_MODULE_EXPORT void imcb_rename_buddy( struct im_connection *ic, char *handle, char *realname );
    196 G_MODULE_EXPORT void imcb_buddy_nick_hint( struct im_connection *ic, char *handle, char *nick );
    197197
    198198/* Buddy activity */
     
    208208G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason );
    209209G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at );
    210 G_MODULE_EXPORT void imcb_chat_free( struct groupchat *c );
     210G_MODULE_EXPORT void imcb_chat_removed( struct groupchat *c );
     211struct groupchat *chat_by_channel( char *channel );
    211212
    212213/* Actions, or whatever. */
Note: See TracChangeset for help on using the changeset viewer.