1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Declarations common to wx char/wchar_t usage (wide chars)
8 // Copyright: (c) wxWindows copyright
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "wxchar.h"
19 // only do SBCS or _UNICODE
21 // It may be OK anyway.
22 // # error "MBCS is not supported by wxChar"
25 // ----------------------------------------------------------------------------
26 // first deal with Unicode setting
27 // ----------------------------------------------------------------------------
29 // set wxUSE_UNICODE to 1 if UNICODE or _UNICODE is defined
30 #if defined(_UNICODE) || defined(UNICODE)
32 # define wxUSE_UNICODE 1
34 # ifndef wxUSE_UNICODE
35 # define wxUSE_UNICODE 0
39 // and vice versa: define UNICODE and _UNICODE if wxUSE_UNICODE is 1...
49 // Unicode support requires wchar_t
52 # define wxUSE_WCHAR_T 1
55 // ----------------------------------------------------------------------------
56 // define wxHAVE_TCHAR_FUNCTIONS for the compilers which support the
57 // wide-character functions
58 // ----------------------------------------------------------------------------
61 // VC++ and BC++ starting with 5.2 have TCHAR support
63 #define wxHAVE_TCHAR_FUNCTIONS
64 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x520)
65 #define wxHAVE_TCHAR_FUNCTIONS
66 #elif defined(__MINGW32__) && wxCHECK_W32API_VERSION( 1, 0 )
67 #define wxHAVE_TCHAR_FUNCTIONS
71 #elif defined(__CYGWIN__)
75 #elif defined(__VISAGECPP__) && (__IBMCPP__ >= 400)
76 // VisualAge 4.0+ supports TCHAR
77 #define wxHAVE_TCHAR_FUNCTIONS
79 // but not stdio.h nor time nor conversion functions
80 #define wxNO_TCHAR_STDIO
81 #define wxNO_TCHAR_STDLIB
82 #define wxNO_TCHAR_TIME
83 #define wxNO_TCHAR_LOCALE
85 // supplemental VA V4 defs so at least we know what these are
86 // just define to standard defs
92 // locale.h functons -- not defined in tchar.h
93 #define wxSetlocale setlocale
94 // some stdio functions are defined others are not
96 #define wxFgetchar fgetchar
98 #define wxFputchar fputchar
99 #define wxFreopen freopen
101 #define wxPerror perror
103 #define wxRemove remove
104 #define wxRename rename
105 #define wxTmpnam tmpnam
106 #define wxUngetc ungetc
107 #define wxVsscanf vsscanf
108 // stdlib not defined in VA V4
114 #define wxGetenv getenv
115 #define wxSystem system
116 // time.h functions -- none defined in tchar.h
117 #define wxAsctime asctime
118 #define wxCtime ctime
119 #elif defined(__MWERKS__)
124 #endif // compilers with (good) TCHAR support
126 #ifdef wxHAVE_TCHAR_FUNCTIONS
127 # define HAVE_WCSLEN 1
131 # if wxUSE_UNICODE // temporary - preserve binary compatibility
132 #if defined(__GNUWIN32__)
134 #define _TSCHAR TCHAR
135 #define _TUCHAR TCHAR
138 typedef _TCHAR wxChar
;
139 typedef _TSCHAR wxSChar
;
140 typedef _TUCHAR wxUChar
;
143 # define wxSChar signed char
144 # define wxUChar unsigned char
147 // wchar_t is available
148 #ifndef wxUSE_WCHAR_T
149 #define wxUSE_WCHAR_T 1
150 #endif // !defined(wxUSE_WCHAR_T)
153 #ifndef wxNO_TCHAR_CTYPE
157 # define wxIsalnum _istalnum
158 # define wxIsalpha _istalpha
159 # define wxIsctrl _istctrl
160 # define wxIsdigit _istdigit
161 # define wxIsgraph _istgraph
162 # define wxIslower _istlower
163 # define wxIsprint _istprint
164 # define wxIspunct _istpunct
165 # define wxIsspace _istspace
166 # define wxIsupper _istupper
167 # define wxIsxdigit _istxdigit
168 # define wxTolower _totlower
169 # define wxToupper _totupper
170 #endif // wxNO_TCHAR_CTYPE
173 #ifndef wxNO_TCHAR_LOCALE
174 # define wxSetlocale _tsetlocale
175 #endif // wxNO_TCHAR_LOCALE
177 // string.h functions
178 #ifndef wxNO_TCHAR_STRING
179 # define wxStrcat _tcscat
180 # define wxStrchr _tcschr
181 # define wxStrcmp _tcscmp
182 # define wxStrcoll _tcscoll
183 # define wxStrcpy _tcscpy
184 # define wxStrcspn _tcscspn
185 # define wxStrftime _tcsftime
186 # define wxStricmp _tcsicmp
187 # define wxStrnicmp _tcsnicmp
188 # define wxStrlen_ _tcslen // used in wxStrlen inline function
189 # define wxStrncat _tcsncat
190 # define wxStrncmp _tcsncmp
191 # define wxStrncpy _tcsncpy
192 # define wxStrpbrk _tcspbrk
193 # define wxStrrchr _tcsrchr
194 # define wxStrspn _tcsspn
195 # define wxStrstr _tcsstr
196 # define wxStrtod _tcstod
197 # define wxStrtol _tcstol
198 # define wxStrtoul _tcstoul
199 # define wxStrxfrm _tcsxfrm
200 #endif // wxNO_TCHAR_STRING
203 #ifndef wxNO_TCHAR_STDIO
204 # define wxFgetc _fgettc
205 # define wxFgetchar _fgettchar
206 # define wxFgets _fgetts
207 # define wxFopen _tfopen
208 # define wxFputc _fputtc
209 # define wxFputchar _fputtchar
210 # define wxFprintf _ftprintf
211 # define wxFreopen _tfreopen
212 # define wxFscanf _ftscanf
213 # define wxGetc _gettc
214 # define wxGetchar _gettchar
215 # define wxGets _getts
216 # define wxPerror _tperror
217 # define wxPrintf _tprintf
218 # define wxPutc _puttc
219 # define wxPutchar _puttchar
220 # define wxPuts _putts
221 # define wxRemove _tremove
222 # define wxRename _trename
223 # define wxScanf _tscanf
224 # define wxSprintf _stprintf
225 # define wxSscanf _stscanf
226 # define wxTmpnam _ttmpnam
227 # define wxUngetc _tungetc
228 # define wxVfprint _vftprintf
229 # define wxVprintf _vtprintf
230 # define wxVsscanf _vstscanf
231 # define wxVsprintf _vstprintf
232 #elif defined(__VISAGECPP__) && (__IBMCPP__ >= 400)
233 // it has some stdio.h functions, apparently
234 # define wxFgetc _fgettc
235 # define wxFgets _fgetts
236 # define wxFputc _fputtc
237 # define wxFprintf _ftprintf
238 # define wxFscanf _ftscanf
239 # define wxGetc _gettc
240 # define wxGetchar _gettchar
241 # define wxPrintf _tprintf
242 # define wxPutc _puttc
243 # define wxPutchar _puttchar
244 # define wxScanf _tscanf
245 # define wxSprintf _stprintf
246 # define wxSscanf _stscanf
247 # define wxVfprint _vftprintf
248 # define wxVprintf _vtprintf
249 # define wxVsprintf _vstprintf
250 #endif // wxNO_TCHAR_STDIO
252 // stdlib.h functions
253 #ifndef wxNO_TCHAR_STDLIB
257 # define wxAtoi _ttoi
258 # define wxAtol _ttol
259 # define wxGetenv _tgetenv
260 # define wxSystem _tsystem
261 #endif // wxNO_TCHAR_STDLIB
264 #ifndef wxNO_TCHAR_TIME
265 # define wxAsctime _tasctime
266 # define wxCtime _tctime
267 #endif // wxNO_TCHAR_TIME
269 #else // !TCHAR-aware compilers
271 // check whether we should include wchar.h or equivalent
272 # if !defined(wxUSE_WCHAR_T)
273 # if defined(__VISUALC__) && (__VISUALC__ < 900)
274 # define wxUSE_WCHAR_T 0 // wchar_t is not available for MSVC++ 1.5
275 # elif defined(__UNIX__)
276 # if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H) || defined(__FreeBSD__) || defined(__DARWIN__)
277 # define wxUSE_WCHAR_T 1
279 # define wxUSE_WCHAR_T 0
281 # elif defined(__GNUWIN32__) && !defined(__MINGW32__) // Cygwin (not Mingw32) doesn't have wcslen.h, needed in buffer.h
282 # define wxUSE_WCHAR_T 0
283 # elif defined(__BORLANDC__) // WIN16 BC++
284 # define wxUSE_WCHAR_T 0
285 # elif defined(__WATCOMC__)
286 # define wxUSE_WCHAR_T 0
287 # elif defined(__VISAGECPP__) && (__IBMCPP__ < 400)
288 # define wxUSE_WCHAR_T 0
290 // add additional compiler checks if this fails
291 # define wxUSE_WCHAR_T 1
293 # endif // !defined(wxUSE_WCHAR_T)
299 # if defined(HAVE_WCHAR_H)
301 // include wchar.h to get wcslen() declaration used by wx/buffer.h
304 # elif defined(__FreeBSD__) || defined(__DARWIN__)
306 // include stdlib.h for wchar_t, wcslen is provided in wxchar.cpp
308 size_t WXDLLEXPORT
wcslen(const wchar_t *s
);
314 // check whether we are doing Unicode
319 // this is probably glibc-specific
320 # if defined(__WCHAR_TYPE__)
322 typedef __WCHAR_TYPE__ wxChar
;
323 typedef signed __WCHAR_TYPE__ wxSChar
;
324 typedef unsigned __WCHAR_TYPE__ wxUChar
;
328 // ctype.h functions (wctype.h)
329 # define wxIsalnum iswalnum
330 # define wxIsalpha iswalpha
331 # define wxIsctrl iswcntrl
332 # define wxIsdigit iswdigit
333 # define wxIsgraph iswgraph
334 # define wxIslower iswlower
335 # define wxIsprint iswprint
336 # define wxIspunct iswpunct
337 # define wxIsspace iswspace
338 # define wxIsupper iswupper
339 # define wxIsxdigit iswxdigit
341 # if defined(__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0)
342 // /usr/include/wctype.h incorrectly declares translations tables which
343 // provokes tons of compile-time warnings - try to correct this
344 # define wxTolower(wc) towctrans((wc), (wctrans_t)__ctype_tolower)
345 # define wxToupper(wc) towctrans((wc), (wctrans_t)__ctype_toupper)
347 # define wxTolower towlower
348 # define wxToupper towupper
351 // string.h functions (wchar.h)
352 # define wxStrcat wcscat
353 # define wxStrchr wcschr
354 # define wxStrcmp wcscmp
355 # define wxStrcoll wcscoll
356 # define wxStrcpy wcscpy
357 # define wxStrcspn wcscspn
358 # define wxStrlen_ wcslen // used in wxStrlen inline function
359 # define wxStrncat wcsncat
360 # define wxStrncmp wcsncmp
361 # define wxStrncpy wcsncpy
362 # define wxStrpbrk wcspbrk
363 # define wxStrrchr wcsrchr
364 # define wxStrspn wcsspn
365 # define wxStrstr wcsstr
366 # define wxStrtod wcstod
367 # define wxStrtok wcstok
368 # define wxStrtol wcstol
369 # define wxStrtoul wcstoul
370 # define wxStrxfrm wcsxfrm
372 // glibc doesn't have wc equivalents of the other stuff
373 # define wxNEED_WX_STDIO_H
374 # define wxNEED_WX_STDLIB_H
375 # define wxNEED_WX_TIME_H
378 # error "Please define your compiler's Unicode conventions in wxChar.h"
385 # if 0 // temporary - preserve binary compatibilty
387 typedef signed char wxSChar
;
388 typedef unsigned char wxUChar
;
391 # define wxSChar signed char
392 # define wxUChar unsigned char
395 # if defined(__FreeBSD__) || defined(__DARWIN__)
399 # if !defined(__MINGW32__) || !defined(_T)
404 # define wxIsalnum isalnum
405 # define wxIsalpha isalpha
406 # define wxIsctrl isctrl
407 # define wxIsdigit isdigit
408 # define wxIsgraph isgraph
409 # define wxIslower islower
410 # define wxIsprint isprint
411 # define wxIspunct ispunct
412 # define wxIsspace isspace
413 # define wxIsupper isupper
414 # define wxIsxdigit isxdigit
415 # define wxTolower tolower
416 # define wxToupper toupper
419 # define wxSetlocale setlocale
421 // string.h functions
422 // #define wxStricmp strcasecmp
423 // wxStricmp is defined below!!
426 #define wxStrtok(str, sep, last) strtok_r(str, sep, last)
428 #define wxStrtok(str, sep, last) strtok(str, sep)
431 // leave the rest to defaults below
432 # define wxNEED_WX_STRING_H
433 # define wxNEED_WX_STDIO_H
434 # define wxNEED_WX_STDLIB_H
435 # define wxNEED_WX_TIME_H
438 #endif//TCHAR-aware compilers
440 // define wxStricmp for various compilers without Unicode possibilities
441 #if !defined(wxStricmp) && !wxUSE_UNICODE
442 # if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__SALFORDC__) || defined(__VISAGECPP__) || defined(__EMX__) || defined(__DJGPP__)
443 # define wxStricmp stricmp
444 # define wxStrnicmp strnicmp
445 # elif defined(__SC__) || defined(__VISUALC__) || (defined(__MWERKS__) && defined(__INTEL__))
446 # define wxStricmp _stricmp
447 # define wxStrnicmp _strnicmp
448 # elif defined(__UNIX__) || defined(__GNUWIN32__)
449 # define wxStricmp strcasecmp
450 # define wxStrnicmp strncasecmp
451 # elif defined(__MWERKS__) && !defined(__INTEL__)
452 // use wxWindows' implementation
454 // if you leave wxStricmp undefined, wxWindows' implementation will be used
455 # error "Please define string case-insensitive compare for your OS/compiler"
459 // if we need to define for standard headers, and we're not using Unicode,
460 // just define to standard C library routines
462 # ifdef wxNEED_WX_STRING_H
463 # define wxStrcat strcat
464 # define wxStrchr strchr
465 # define wxStrcmp strcmp
466 # define wxStrcoll strcoll
467 # define wxStrcpy strcpy
468 # define wxStrcspn strcspn
469 # define wxStrdup strdup
470 # define wxStrlen_ strlen // used in wxStrlen inline function
471 # define wxStrncat strncat
472 # define wxStrncmp strncmp
473 # define wxStrncpy strncpy
474 # define wxStrpbrk strpbrk
475 # define wxStrrchr strrchr
476 # define wxStrspn strspn
477 # define wxStrstr strstr
478 # define wxStrtod strtod
479 # define wxStrtol strtol
480 # define wxStrtoul strtoul
481 # define wxStrxfrm strxfrm
482 # undef wxNEED_WX_STRING_H
485 # ifdef wxNEED_WX_STDIO_H
486 # define wxFgetc fgetc
487 # define wxFgetchar fgetchar
488 # define wxFgets fgets
489 # define wxFopen fopen
490 # define wxFputc fputc
491 # define wxFputchar fputchar
492 # define wxFprintf fprintf
493 # define wxFreopen freopen
494 # define wxFscanf fscanf
496 # define wxGetchar getchar
498 # define wxPerror perror
499 # define wxPrintf printf
501 # define wxPutchar putchar
503 # define wxRemove remove
504 # define wxRename rename
505 # define wxScanf scanf
506 # define wxSprintf sprintf
507 # define wxSscanf sscanf
508 # define wxTmpnam tmpnam
509 # define wxUngetc ungetc
510 # define wxVfprint vfprintf
511 # define wxVprintf vprintf
512 # define wxVsscanf vsscanf
513 # define wxVsprintf vsprintf
514 # undef wxNEED_WX_STDIO_H
517 # ifdef wxNEED_WX_STDLIB_H
521 # define wxGetenv getenv
522 # define wxSystem system
523 # undef wxNEED_WX_STDLIB_H
526 # ifdef wxNEED_WX_TIME_H
527 # define wxAsctime asctime
528 # define wxCtime ctime
529 # define wxStrftime strftime
530 # undef wxNEED_WX_TIME_H
534 // checks whether the passed in pointer is NULL and if the string is empty
535 inline bool wxIsEmpty(const wxChar
*p
) { return !p
|| !*p
; }
537 #ifndef wxNEED_WX_STRING_H
538 // safe version of strlen() (returns 0 if passed NULL pointer)
539 inline size_t wxStrlen(const wxChar
*psz
)
540 { return psz
? wxStrlen_(psz
) : 0; }
544 // multibyte<->widechar conversion
545 WXDLLEXPORT
size_t wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
);
546 WXDLLEXPORT
size_t wxWC2MB(char *buf
, const wchar_t *psz
, size_t n
);
548 # define wxMB2WX wxMB2WC
549 # define wxWX2MB wxWC2MB
550 # define wxWC2WX wxStrncpy
551 # define wxWX2WC wxStrncpy
553 # define wxMB2WX wxStrncpy
554 # define wxWX2MB wxStrncpy
555 # define wxWC2WX wxWC2MB
556 # define wxWX2WC wxMB2WC
559 // No wxUSE_WCHAR_T: we have to do something (JACS)
560 # define wxMB2WC wxStrncpy
561 # define wxWC2MB wxStrncpy
562 # define wxMB2WX wxStrncpy
563 # define wxWX2MB wxStrncpy
564 # define wxWC2WX wxWC2MB
565 # define wxWX2WC wxMB2WC
568 WXDLLEXPORT
bool wxOKlibc(); // for internal use
570 // if libc versions are not available, use replacements defined in wxchar.cpp
572 WXDLLEXPORT wxChar
* wxStrdup(const wxChar
*psz
);
576 WXDLLEXPORT
int wxStricmp(const wxChar
*psz1
, const wxChar
*psz2
);
580 WXDLLEXPORT
int wxStrnicmp(const wxChar
*psz1
, const wxChar
*psz2
, size_t len
);
584 WXDLLEXPORT wxChar
* wxStrtok(wxChar
*psz
, const wxChar
*delim
, wxChar
**save_ptr
);
589 WXDLLEXPORT wxWCharBuffer
wxSetlocale(int category
, const wxChar
*locale
);
592 #ifdef wxNEED_WX_CTYPE_H
593 WXDLLEXPORT
int wxIsalnum(wxChar ch
);
594 WXDLLEXPORT
int wxIsalpha(wxChar ch
);
595 WXDLLEXPORT
int wxIsctrl(wxChar ch
);
596 WXDLLEXPORT
int wxIsdigit(wxChar ch
);
597 WXDLLEXPORT
int wxIsgraph(wxChar ch
);
598 WXDLLEXPORT
int wxIslower(wxChar ch
);
599 WXDLLEXPORT
int wxIsprint(wxChar ch
);
600 WXDLLEXPORT
int wxIspunct(wxChar ch
);
601 WXDLLEXPORT
int wxIsspace(wxChar ch
);
602 WXDLLEXPORT
int wxIsupper(wxChar ch
);
603 WXDLLEXPORT
int wxIsxdigit(wxChar ch
);
604 WXDLLEXPORT
int wxTolower(wxChar ch
);
605 WXDLLEXPORT
int wxToupper(wxChar ch
);
608 #ifdef wxNEED_WX_STRING_H
609 WXDLLEXPORT wxChar
* wxStrcat(wxChar
*dest
, const wxChar
*src
);
610 WXDLLEXPORT wxChar
* wxStrchr(const wxChar
*s
, wxChar c
);
611 WXDLLEXPORT
int wxStrcmp(const wxChar
*s1
, const wxChar
*s2
);
612 WXDLLEXPORT
int wxStrcoll(const wxChar
*s1
, const wxChar
*s2
);
613 WXDLLEXPORT wxChar
* wxStrcpy(wxChar
*dest
, const wxChar
*src
);
614 WXDLLEXPORT
size_t wxStrcspn(const wxChar
*s
, const wxChar
*reject
);
615 WXDLLEXPORT
size_t wxStrlen(const wxChar
*s
);
616 WXDLLEXPORT wxChar
* wxStrncat(wxChar
*dest
, const wxChar
*src
, size_t n
);
617 WXDLLEXPORT
int wxStrncmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
);
618 WXDLLEXPORT wxChar
* wxStrncpy(wxChar
*dest
, const wxChar
*src
, size_t n
);
619 WXDLLEXPORT wxChar
* wxStrpbrk(const wxChar
*s
, const wxChar
*accept
);
620 WXDLLEXPORT wxChar
* wxStrrchr(const wxChar
*s
, wxChar c
);
621 WXDLLEXPORT
size_t wxStrspn(const wxChar
*s
, const wxChar
*accept
);
622 WXDLLEXPORT wxChar
* wxStrstr(const wxChar
*haystack
, const wxChar
*needle
);
623 WXDLLEXPORT
double wxStrtod(const wxChar
*nptr
, wxChar
**endptr
);
624 WXDLLEXPORT
long int wxStrtol(const wxChar
*nptr
, wxChar
**endptr
, int base
);
625 WXDLLEXPORT
unsigned long int wxStrtoul(const wxChar
*nptr
, wxChar
**endptr
, int base
);
626 WXDLLEXPORT
size_t wxStrxfrm(wxChar
*dest
, const wxChar
*src
, size_t n
);
629 #ifdef wxNEED_WX_STDIO_H
632 WXDLLEXPORT
FILE * wxFopen(const wxChar
*path
, const wxChar
*mode
);
633 WXDLLEXPORT
FILE * wxFreopen(const wxChar
*path
, const wxChar
*mode
, FILE *stream
);
634 WXDLLEXPORT
int wxRemove(const wxChar
*path
);
635 WXDLLEXPORT
int wxRename(const wxChar
*oldpath
, const wxChar
*newpath
);
636 WXDLLEXPORT
int wxPrintf(const wxChar
*fmt
, ...);
637 WXDLLEXPORT
int wxVprintf(const wxChar
*fmt
, va_list argptr
);
638 WXDLLEXPORT
int wxFprintf(FILE *stream
, const wxChar
*fmt
, ...);
639 WXDLLEXPORT
int wxVfprintf(FILE *stream
, const wxChar
*fmt
, va_list argptr
);
640 WXDLLEXPORT
int wxSprintf(wxChar
*buf
, const wxChar
*fmt
, ...);
641 WXDLLEXPORT
int wxVsprintf(wxChar
*buf
, const wxChar
*fmt
, va_list argptr
);
642 WXDLLEXPORT
int wxSscanf(const wxChar
*buf
, const wxChar
*fmt
, ...);
643 WXDLLEXPORT
int wxVsscanf(const wxChar
*buf
, const wxChar
*fmt
, va_list argptr
);
647 WXDLLEXPORT
double wxAtof(const wxChar
*psz
);
650 #ifdef wxNEED_WX_STDLIB_H
651 WXDLLEXPORT
int wxAtoi(const wxChar
*psz
);
652 WXDLLEXPORT
long wxAtol(const wxChar
*psz
);
653 WXDLLEXPORT wxChar
* wxGetenv(const wxChar
*name
);
654 WXDLLEXPORT
int wxSystem(const wxChar
*psz
);
657 #ifdef wxNEED_WX_TIME_H
658 WXDLLEXPORT
size_t wxStrftime(wxChar
*s
, size_t max
, const wxChar
*fmt
, const struct tm
*tm
);
661 // under VC++ 6.0 isspace() returns 1 for 8 bit chars which completely breaks
662 // the file parsing - this may be true for 5.0 as well, update #ifdef then
663 #if defined(__VISUALC__) && (__VISUALC__ >= 1200) && !wxUSE_UNICODE
665 #define wxIsspace(c) ((((unsigned)c) < 128) && isspace(c))
668 // ----------------------------------------------------------------------------
669 // common macros which are always defined
670 // ----------------------------------------------------------------------------
672 // although global macros with such names are really bad, we want to have
673 // another name for _T() which should be used to avoid confusion between _T()
674 // and _() in wxWindows sources
677 // Unicode-friendly __FILE__, __DATE__ and __TIME__ analogs
679 #define __XFILE__(x) wxT(x)
680 #define __TFILE__ __XFILE__(__FILE__)
684 #define __XDATE__(x) wxT(x)
685 #define __TDATE__ __XDATE__(__DATE__)
689 #define __XTIME__(x) wxT(x)
690 #define __TTIME__ __XTIME__(__TIME__)