I am revising some very old (10 years) C code. The code compiles on Unix/Mac with GCC and cross-compiles for Windows with MinGW. Currently there are TCHAR strings throughout. I'd like to get rid of the TCHAR and use a C++ string instead. Is it still necessary to use the Windows wide functions, or can I do everything now with Unicode and UTF-8?
|
feedback
|
|
Windows uses UTF16 still and most likely always will. You need to use It is thus rather painful to write Unicode code that will compile on both Windows and Unix platforms. | |||||||||||||||||||||
feedback
|
Yes. Unfortunately, Windows does not have native support for UTF-8. If you want proper Unicode support, you need to use the
Yes, you should. The reason And it's highly unlikely that any non-Windows-specific library would have the same kind of So go ahead and replace all your
I've had to write cross-platform C++ code before. (Now my job is writing cross-platform C# code.) Character encoding is rather painful when Windows doesn't support UTF-8 and Un*x doesn't support UTF-16. I ended up using UTF-8 as our main encoding and converting as necessary on Windows. | |||
|
feedback
|
|
Yes, writing non-unicode applications nowadays is shooting yourself in the foot. Just use the wide API everywhere, and you'll not have to cry about it later. You can still use UTF8 on UNIX and wchar_t on Windows if you don't need (network) communication between platforms (or convert the wchar_t's with Win32 API to UTF-8), or go the hard way and use UTF-8 everywhere and convert to wchar_t's when you use Win32 API functions (that's what I do). | |||
|
feedback
|
|
To directly answer your question:
No, (non-ASCII) UTF-8 is not accepted by the vast majority of Windows API functions. You still have to use the wide APIs. One could similarly bemoan that other OSes still have no support for The other answers provide some good advice on how to manage this in a cross-platform codebase, but it sounds as if you already have an implementation supporting different character types. As desirable as ripping that out to simplify the code might sound, don't. | |||
|
feedback
|
TCHARto get several smallish tools to compile under Windows, Linux, and Solaris, each using its native Unicode format (UTF-16 or UTF-8). But it does involve making your owntchar.hfor the *nix platforms. – hippietrail Aug 10 '11 at 10:38