aboutsummaryrefslogtreecommitdiffstats
path: root/nick.h
diff options
context:
space:
mode:
Diffstat (limited to 'nick.h')
-rw-r--r--nick.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/nick.h b/nick.h
index 5e53694c..d48369c6 100644
--- a/nick.h
+++ b/nick.h
@@ -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 );