git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16974
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#define wxVsscanf _vstscanf
#define wxVsprintf _vstprintf
#define wxVsscanf _vstscanf
#define wxVsprintf _vstprintf
+ // special case: not all TCHAR-aware compilers have those
+ #if defined(__VISUALC__) || \
+ (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
+ #define wxVsnprintf_ _vsntprintf
+ #define wxSnprintf_ _sntprintf
+ #endif
+
// special case: these functions are missing under Win9x with Unicows so we
// have to implement them ourselves
#if wxUSE_UNICODE_MSLU
// special case: these functions are missing under Win9x with Unicows so we
// have to implement them ourselves
#if wxUSE_UNICODE_MSLU
We define function with a trailing underscore here because the real one is a
wrapper around it as explained below
*/
We define function with a trailing underscore here because the real one is a
wrapper around it as explained below
*/
-#ifdef wxHAVE_TCHAR_SUPPORT
- #define wxVsnprintf_ _vsntprintf
- #define wxSnprintf_ _sntprintf
-#else // !TCHAR
#if wxUSE_UNICODE
#if defined(HAVE_VSWPRINTF)
#define wxVsnprintf_ vswprintf
#if wxUSE_UNICODE
#if defined(HAVE_VSWPRINTF)
#define wxVsnprintf_ vswprintf
#define wxSnprintf_ snprintf
#endif
#endif
#define wxSnprintf_ snprintf
#endif
#endif
+#endif // wxVsnprintf_ not defined yet
#ifndef wxVsnprintf_
// no [v]snprintf(), cook our own
#ifndef wxVsnprintf_
// no [v]snprintf(), cook our own