added correct wchar include for metrowerks compilers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2001-10-20 08:07:47 +00:00
parent 551a6c64bb
commit f7efcd8144

View File

@@ -113,6 +113,11 @@
// time.h functions -- none defined in tchar.h // time.h functions -- none defined in tchar.h
#define wxAsctime asctime #define wxAsctime asctime
#define wxCtime ctime #define wxCtime ctime
#elif defined(__MWERKS__)
// for wcslen
#if wxUSE_WCHAR_T
#include <wchar.h>
#endif
#endif // compilers with (good) TCHAR support #endif // compilers with (good) TCHAR support
#ifdef wxHAVE_TCHAR_FUNCTIONS #ifdef wxHAVE_TCHAR_FUNCTIONS