Changeset 0b5cc72 for irc.h


Ignore:
Timestamp:
2010-04-05T00:39:04Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
57c96f7
Parents:
1d39159
Message:

Send nickname change notifications when necessary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    r1d39159 r0b5cc72  
    179179int irc_channel_add_user( irc_channel_t *ic, irc_user_t *iu );
    180180int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu );
     181gboolean irc_channel_has_user( irc_channel_t *ic, irc_user_t *iu );
    181182int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_t *who );
    182183gboolean irc_channel_name_ok( const char *name );
     
    198199void irc_send_msg( irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix );
    199200void irc_send_msg_raw( irc_user_t *iu, const char *type, const char *dst, const char *msg );
     201void irc_send_nick( irc_user_t *iu, const char *new );
    200202
    201203/* irc_user.c */
     
    203205int irc_user_free( irc_t *irc, const char *nick );
    204206irc_user_t *irc_user_by_name( irc_t *irc, const char *nick );
    205 int irc_user_rename( irc_t *irc, const char *old, const char *new );
     207int irc_user_set_nick( irc_t *irc, const char *old, const char *new );
    206208gint irc_user_cmp( gconstpointer a_, gconstpointer b_ );
    207209
Note: See TracChangeset for help on using the changeset viewer.