Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee.h

    r03df717 r0864a52  
    6262        BEE_USER_LOCAL = 256,   /* Locally-added contacts (not in real contact list) */
    6363        BEE_USER_SPECIAL = 512, /* Denotes a user as being special */
    64         BEE_USER_NOOTR = 4096,  /* Per-user version of OPT_NOOTR */
    6564} bee_user_flags_t;
    6665
     
    105104        gboolean (*user_status)(bee_t *bee, struct bee_user *bu, struct bee_user *old);
    106105        /* On every incoming message. sent_at = 0 means unknown. */
    107         gboolean (*user_msg)(bee_t *bee, bee_user_t *bu, const char *msg, guint32 flags, time_t sent_at);
     106        gboolean (*user_msg)(bee_t *bee, bee_user_t *bu, const char *msg, time_t sent_at);
    108107        /* Flags currently defined (OPT_TYPING/THINKING) in nogaim.h. */
    109108        gboolean (*user_typing)(bee_t *bee, bee_user_t *bu, guint32 flags);
     
    118117        /* System messages of any kind. */
    119118        gboolean (*chat_log)(bee_t *bee, struct groupchat *c, const char *text);
    120         gboolean (*chat_msg)(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, guint32 flags, time_t sent_at);
     119        gboolean (*chat_msg)(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, time_t sent_at);
    121120        gboolean (*chat_add_user)(bee_t *bee, struct groupchat *c, bee_user_t *bu);
    122         gboolean (*chat_remove_user)(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *reason);
     121        gboolean (*chat_remove_user)(bee_t *bee, struct groupchat *c, bee_user_t *bu);
    123122        gboolean (*chat_topic)(bee_t *bee, struct groupchat *c, const char *new_topic, bee_user_t *bu);
    124123        gboolean (*chat_name_hint)(bee_t *bee, struct groupchat *c, const char *name);
     
    129128        void (*ft_close)(struct im_connection *ic, struct file_transfer *ft);
    130129        void (*ft_finished)(struct im_connection *ic, struct file_transfer *ft);
    131 
    132         void (*log)(bee_t *bee, const char *tag, const char *msg);
    133130} bee_ui_funcs_t;
    134131
Note: See TracChangeset for help on using the changeset viewer.