Are _tprintf and it's related functions (_ftprintf, _stprintf) implemented? I found a tchar.h in the source tree that defines these functions, but it wasn't in my /usr/local/include/wine directory. These functions aren't important for wine, since they're simply defined as the ASCII or Unicode version, but they are important for WineLib.
What is the overall status of using Unicode with WineLib? What needs to be defined and what headers need to be included to get the functionality from Windows' tchar.h (_T(), TCHAR, the above functions, etc)?
-Steve
--- steve.lustbader@philips.com wrote:
Are _tprintf and it's related functions (_ftprintf, _stprintf) implemented? I found a tchar.h in the source tree that defines these functions, but it wasn't in my /usr/local/include/wine directory.
I'm fixing the build process to install the header. For now you can copy it manually to the /usr/local/include/wine directory. Actually _ftprintf and _stprintf are not functions, but macros which are mapped in tchar.h to corresponding ASCII or Unicode function. The underlying functions should be implemented.
These functions aren't important for wine, since they're simply defined as the ASCII or Unicode version, but they are important for WineLib.
What is the overall status of using Unicode with WineLib? What needs to be defined and what headers need to be included to get the functionality from Windows' tchar.h (_T(), TCHAR, the above functions, etc)?
Unicode is supported relatively well in Wine. Please report if you have any issues with it.
Andriy
__________________________________________________ Do you Yahoo!? Yahoo! News - Today's headlines http://news.yahoo.com
Andriy Palamarchuk wrote:
Unicode is supported relatively well in Wine. Please report if you have any issues with it.
Andriy
Except where special manipulations are required (reordering, ligation, diacritics etc.). How are we on Kerning, BTW?
Shachar