about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chat.h b/chat.h
index 31b31a2..42afea9 100644
--- a/chat.h
+++ b/chat.h
@@ -31,7 +31,10 @@
 #define errx(...) do { uiHide(); errx(__VA_ARGS__); } while (0)
 
 struct {
+	char *host;
 	char *port;
+	char *pass;
+	char *webp;
 	char *nick;
 	char *user;
 	char *real;
@@ -103,7 +106,7 @@ void handle(char *line);
 void input(struct Tag tag, char *line);
 void inputTab(void);
 
-void ircInit(char *host, char *port, char *pass, char *webPass);
+void ircInit(void);
 int ircConnect(void);
 bool ircRead(void);
 void ircWrite(const char *ptr, size_t len);