Changes in protocols/bee.h [03df717:0864a52]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee.h
r03df717 r0864a52 62 62 BEE_USER_LOCAL = 256, /* Locally-added contacts (not in real contact list) */ 63 63 BEE_USER_SPECIAL = 512, /* Denotes a user as being special */ 64 BEE_USER_NOOTR = 4096, /* Per-user version of OPT_NOOTR */65 64 } bee_user_flags_t; 66 65 … … 105 104 gboolean (*user_status)(bee_t *bee, struct bee_user *bu, struct bee_user *old); 106 105 /* 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); 108 107 /* Flags currently defined (OPT_TYPING/THINKING) in nogaim.h. */ 109 108 gboolean (*user_typing)(bee_t *bee, bee_user_t *bu, guint32 flags); … … 118 117 /* System messages of any kind. */ 119 118 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); 121 120 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); 123 122 gboolean (*chat_topic)(bee_t *bee, struct groupchat *c, const char *new_topic, bee_user_t *bu); 124 123 gboolean (*chat_name_hint)(bee_t *bee, struct groupchat *c, const char *name); … … 129 128 void (*ft_close)(struct im_connection *ic, struct file_transfer *ft); 130 129 void (*ft_finished)(struct im_connection *ic, struct file_transfer *ft); 131 132 void (*log)(bee_t *bee, const char *tag, const char *msg);133 130 } bee_ui_funcs_t; 134 131
Note: See TracChangeset
for help on using the changeset viewer.