diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-16 15:39:31 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-16 15:39:31 +0000 |
commit | f60aa68ee934b5e8127582f51f713cc05ef1387a (patch) | |
tree | 252ef8f84cd0e5c9e400fd11dbb2b765385884ab /win/inspircd_win32wrapper.h | |
parent | 1cb674495d8903346831b0ca8baad9478c714861 (diff) |
Ok windows.. YOU WIN :< .. but at least I can use MAXBUF now and configure will have to endure the fixed 500 limit :>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7452 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win/inspircd_win32wrapper.h')
-rw-r--r-- | win/inspircd_win32wrapper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/inspircd_win32wrapper.h b/win/inspircd_win32wrapper.h index 250f41e3f..2daa4ced7 100644 --- a/win/inspircd_win32wrapper.h +++ b/win/inspircd_win32wrapper.h @@ -66,9 +66,6 @@ #include <stdio.h> #include <algorithm> -/* printf_c support for printing ansi colors in console */ -#include "colours.h" - /* strcasecmp is not defined on windows by default */ #define strcasecmp _stricmp @@ -103,6 +100,9 @@ CoreExport int inet_aton(const char *, struct in_addr *); /* Unix-style get running user id */ CoreExport int geteuid(); +/* Handles colors in printf */
+CoreExport int printf_c(const char * format, ...); + /* getopt() wrapper */ # define no_argument 0 # define required_argument 1 |