Hi,
I think I may have found a bug in _tprintf and Unicode
_tprintf("%s%s%s\n",_T("This Took : "), _T("50"), _T(" secs."));
_tprintf(_T("This Took : 99 secs."));
under
pocc -W1 -Ot -Gd -Go -MT -Ze -Zx -Tx86-coff -D_WIN32_WINNT=0x0400 -DUNICODE -D_UNICODE test.c
the 1st line only produces only the 1st character
2nd line emits the whole line
without -DUNICODE -D_UNICODE in the compile line, then both lines produce the desired results.
Ian