Linux 上的 tchar.h
我正在尝试编写跨平台 i18n C++ 代码。 由于大多数linux系统更喜欢使用UTF-8作为字符编码,所以我认为我应该在linux上使用string,在Windows上使用wstring。 tchar.h 在 Linux 上可用吗? Linux 上 tchar.h 的等效替代是什么?
I am trying to write cross platform i18n C++ code. Since most linux system prefer to use UTF-8 as the character encoding, I thought that I should use string on linux and wstring on Windows. Is tchar.h available on linux? What is an equivalent replacement on for tchar.h on Linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会发现这篇文章很有用。 特别是,在接近尾声时,他们讨论了一些有关使用 TCHAR 和处理 Windows 代码的内容。
文章总结为:
You may find this article to be useful. In particular, near the end they discuss a bit about using TCHAR and dealing with Windows code.
The article summarization is:
为了构建以 Windows 为中心的源代码,我可以使用 cygwin\usr\include\w32api 文件夹中 Cygwin 中的 tchar.h 文件。
我实际上正在使用 Android NDK 进行构建。
为了我的目的,我制作了 tchar.h 的副本并对其进行了修补。
To build my Windows centric source I was able to use the tchar.h file from Cygwin's found in the cygwin\usr\include\w32api folder.
I am actually building using Android NDK.
For my purposes I made a copy of tchar.h and patched it.