fix wxVsnprintf_ declaration for VC8

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-09-13 11:59:31 +00:00
parent 66ad556c74
commit ad968793dd

View File

@@ -934,9 +934,9 @@ WXDLLIMPEXP_BASE bool wxOKlibc(); /* for internal use */
// behave mostly identic to our wxVsnprintf() implementation
#if defined(__VISUALC__) && __VISUALC__ >= 1400
#if wxUSE_UNICODE
#define wxVsnprintf_ _vsprintf_p
#else
#define wxVsnprintf_ _vswprintf_p
#else
#define wxVsnprintf_ _vsprintf_p
#endif
#endif
#endif