Changeset bf02a67 for nick.h


Ignore:
Timestamp:
2005-12-15T11:55:27Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
15832cc, bd69a21
Parents:
11e090b (diff), 547f937 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged Jelmer's pluginable tree (mainly useful for the Win32 port).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nick.h

    r11e090b rbf02a67  
    2727{
    2828        char *handle;
    29         int proto;
     29        struct prpl *proto;
    3030        char *nick;
    3131        struct __NICK *next;
    3232} nick_t;
    3333
    34 void nick_set( irc_t *irc, const char *handle, int proto, const char *nick );
    35 char *nick_get( irc_t *irc, const char *handle, int proto, const char *realname );
     34void nick_set( irc_t *irc, const char *handle, struct prpl *proto, const char *nick );
     35char *nick_get( irc_t *irc, const char *handle, struct prpl *proto, const char *realname );
    3636void nick_del( irc_t *irc, const char *nick );
    3737void nick_strip( char *nick );
Note: See TracChangeset for help on using the changeset viewer.