diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-14 02:17:25 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-12-14 02:17:25 +0100 |
commit | 703f0f7f4622194bce8023712a3a9966be6f8827 (patch) | |
tree | 311125ae518c2b277845dc78ec62fc9553081bdf /nick.h | |
parent | 22bf64eab8a79352317ee190cddfeef3011aa8dc (diff) | |
parent | 568aaf7ce17a4db2dddd13f8baed02a6d2757eb6 (diff) |
Merge my pluginable branch
Diffstat (limited to 'nick.h')
-rw-r--r-- | nick.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,13 +26,13 @@ typedef struct __NICK { char *handle; - int proto; + struct prpl *proto; char *nick; struct __NICK *next; } nick_t; -void nick_set( irc_t *irc, const char *handle, int proto, const char *nick ); -char *nick_get( irc_t *irc, const char *handle, int proto, const char *realname ); +void nick_set( irc_t *irc, const char *handle, struct prpl *proto, const char *nick ); +char *nick_get( irc_t *irc, const char *handle, struct prpl *proto, const char *realname ); void nick_del( irc_t *irc, const char *nick ); void nick_strip( char *nick ); |