
Posted:
Nov 4, 2004 @ 7:45pm
by jongjungbu
Not sure. But it is not very difficult at all to use PocketFrog/HAL to build a PC version. And in that, you will have your proper landscape mode.
JJB

Posted:
Nov 5, 2004 @ 8:06pm
by Dan East
TCHAR will be either a char or a short depending on whether or not UNICODE is defined.
Don't use L"", use T(""). L"" forces UNICODE in all cases. T() will be either ANSI or UNICODE depending on if UNICODE is defined or not.
Dan East