don't redefine _CRT_SECURE_NO_DEPRECATE and _CRT_NON_CONFORMING_SWPRINTFS if already defined (patch 1463364)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38629 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-04-08 22:58:54 +00:00
parent 031943ac4c
commit 4c82058341

View File

@@ -79,12 +79,18 @@
# pragma warning(disable:4702) /* unreachable code */ # pragma warning(disable:4702) /* unreachable code */
# endif # endif
/* Deprecated functions such as sprintf, localtime */ /*
VC++ 8 gives a warning when using standard functions such as sprintf,
localtime, ... -- stop this madness, unless the user had already done it
*/
#if __VISUALC__ >= 1400 #if __VISUALC__ >= 1400
#ifndef _CRT_SECURE_NO_DEPRECATE
#define _CRT_SECURE_NO_DEPRECATE 1 #define _CRT_SECURE_NO_DEPRECATE 1
#endif
#ifndef _CRT_NON_CONFORMING_SWPRINTFS
#define _CRT_NON_CONFORMING_SWPRINTFS 1 #define _CRT_NON_CONFORMING_SWPRINTFS 1
#endif #endif
#endif /* VC++ 8 */
#endif /* __VISUALC__ */ #endif /* __VISUALC__ */
/* suppress some Salford C++ warnings */ /* suppress some Salford C++ warnings */