diff options
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, char *handle, int proto, char *nick ); -char *nick_get( irc_t *irc, char *handle, int proto, const char *realname ); +void nick_set( irc_t *irc, char *handle, struct prpl *proto, char *nick ); +char *nick_get( irc_t *irc, char *handle, struct prpl *proto, const char *realname ); void nick_del( irc_t *irc, char *nick ); void nick_strip( char *nick ); |