Changeset 52744f8 for protocols/nogaim.h


Ignore:
Timestamp:
2008-01-17T22:06:55Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
ac4adf9
Parents:
13857c6
Message:

Fixing some Solaris compiler warnings (u_int->uint, adding some typecasts
for pid_t variables).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.h

    r13857c6 r52744f8  
    6868{
    6969        account_t *acc;
    70         u_int32_t flags;
     70        uint32_t flags;
    7171       
    7272        /* each connection then can have its own protocol-specific data */
     
    282282/* Not implemented yet! */ G_MODULE_EXPORT void imcb_buddy_times( struct im_connection *ic, const char *handle, time_t login, time_t idle );
    283283/* 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 );
     284G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, uint32_t flags, time_t sent_at );
     285G_MODULE_EXPORT void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags );
    286286G_MODULE_EXPORT void imcb_clean_handle( struct im_connection *ic, char *handle );
    287287
     
    299299G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason );
    300300/* 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 );
     301G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, uint32_t flags, time_t sent_at );
    302302/* To tell BitlBee 'who' changed the topic of 'c' to 'topic'. */
    303303G_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.