X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=config.h.win;fp=config.h.win;h=981dd84a76d110223d30c2e8b08b6d506aa8a35a;hp=1dc1c2851c08ac6d53b33e5a67b6a74d11bc03c9;hb=000b29e5e446891f0cc059918443d33c1c229971;hpb=547dfbe97d8f410da968adb5a1f05183312aa968 diff --git a/config.h.win b/config.h.win index 1dc1c285..981dd84a 100755 --- a/config.h.win +++ b/config.h.win @@ -37,6 +37,9 @@ * * Revisions : * $Log: config.h.win,v $ + * Revision 1.14 2001/11/30 21:35:54 jongfoster + * Bumping version number to 2.9.10 + * * Revision 1.13 2001/10/23 21:24:09 jongfoster * Support for FEATURE_CGI_EDIT_ACTIONS * @@ -427,5 +430,24 @@ #error This file is only intended for MS VC++ on Win32. For other compilers, please run configure. #endif /* (!defined(_MSC_VER)) && (!defined(RC_INVOKED)) */ +#pragma warning ( disable: 4100 4115 4201 4214 4514 ) + +/* + * C4100 : unreferenced formal parameter + * Very common, not a bug + * + * C4115 : named type definition in parentheses + * #include causes a warning about one of these. + * + * C4201 : nonstandard extension used : nameless struct/union + * Endemic in + * + * C4214 nonstandard extension used : bit field types other than int + * Endemic in + * + * C4514 unreferenced inline/local function has been removed + * Caused by #include + */ + #endif /* CONFIG_H_INCLUDED */