aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/irc.h b/src/irc.h
index 5e831b9..91ffd00 100644
--- a/src/irc.h
+++ b/src/irc.h
@@ -1,20 +1,15 @@
#define MAX_IRC_MSG_LEN 512
-
-/*
-#define streq(x,y) !strcmp(x,y)
-#define streq_i(x,y) !strcasecmp(x,y)
-*/
+#include "rxtxbuf.h"
/**** main.c */
-extern char *rx_buf;
-extern unsigned short rxbuflen;
+
+extern unsigned int rxbuflen;
+extern unsigned int txbuflen;
+
extern unsigned char err;
extern unsigned char trip;
-extern char hz;
extern char reconnect_timeout;
-
-extern unsigned int txbuflen;
-extern char *tx_buf;
+extern char hz; /* 50 for PAL, 60 for NTSC, natch */
/* clears the transmit buffer. */
void txbuf_init(void);