- Timestamp:
- 2008-01-17T22:06:55Z (17 years ago)
- Branches:
- master
- Children:
- ac4adf9
- Parents:
- 13857c6
- Location:
- protocols
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
r13857c6 r52744f8 625 625 } 626 626 627 void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, u _int32_t flags, time_t sent_at )627 void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, uint32_t flags, time_t sent_at ) 628 628 { 629 629 irc_t *irc = ic->irc; … … 676 676 } 677 677 678 void imcb_buddy_typing( struct im_connection *ic, char *handle, u _int32_t flags )678 void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags ) 679 679 { 680 680 user_t *u; … … 732 732 } 733 733 734 void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u _int32_t flags, time_t sent_at )734 void imcb_chat_msg( struct groupchat *c, char *who, char *msg, uint32_t flags, time_t sent_at ) 735 735 { 736 736 struct im_connection *ic = c->ic; -
protocols/nogaim.h
r13857c6 r52744f8 68 68 { 69 69 account_t *acc; 70 u _int32_t flags;70 uint32_t flags; 71 71 72 72 /* each connection then can have its own protocol-specific data */ … … 282 282 /* Not implemented yet! */ G_MODULE_EXPORT void imcb_buddy_times( struct im_connection *ic, const char *handle, time_t login, time_t idle ); 283 283 /* Call when a handle says something. 'flags' and 'sent_at may be just 0. */ 284 G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, u _int32_t flags, time_t sent_at );285 G_MODULE_EXPORT void imcb_buddy_typing( struct im_connection *ic, char *handle, u _int32_t flags );284 G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, uint32_t flags, time_t sent_at ); 285 G_MODULE_EXPORT void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags ); 286 286 G_MODULE_EXPORT void imcb_clean_handle( struct im_connection *ic, char *handle ); 287 287 … … 299 299 G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason ); 300 300 /* To tell BitlBee 'who' said 'msg' in 'c'. 'flags' and 'sent_at' can be 0. */ 301 G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u _int32_t flags, time_t sent_at );301 G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, uint32_t flags, time_t sent_at ); 302 302 /* To tell BitlBee 'who' changed the topic of 'c' to 'topic'. */ 303 303 G_MODULE_EXPORT void imcb_chat_topic( struct groupchat *c, char *who, char *topic, time_t set_at );
Note: See TracChangeset
for help on using the changeset viewer.