added .gitignore
[NeonServV5.git] / main.h
diff --git a/main.h b/main.h
index c25d743239b8fece8b37a3c1b9fac8914aa243bb..c154da3014f4f9661a9ea4419c7d8101c803f3ce 100644 (file)
--- a/main.h
+++ b/main.h
@@ -1,6 +1,8 @@
 #ifndef _main_h
 #define _main_h
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -39,6 +41,8 @@
 #define TOPICLEN        500
 #define CHANNELLEN      200
 #define MAXLEN          512
+#define TRIGGERLEN      50
+#define MAXNUMPARAMS    200 /* maximum number of parameters in one line */
 
 //valid nick chars
 #define VALID_NICK_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890{|}~[\\]^_`"
@@ -51,5 +55,6 @@
 #define TEMPUSER_LIST_INDEX VALID_NICK_CHARS_FIRST_LEN
 
 int stricmp (const char *s1, const char *s2);
+int stricmplen (const char *s1, const char *s2, int len);
 
 #endif
\ No newline at end of file