VC6编译错误

发布于 2024-08-28 03:33:57 字数 116 浏览 14 评论 0原文

PJNSMTPCONNECTION 类中有一些 vs2005 c++ 文件,但我的应用程序是在 vc6 中, 现在任何人都可以知道 CSTRINGA、CSTRINGW 在 vc6 中是否可用。 如果不是如何克服这个问题

there are some vs2005 c++ files in PJNSMTPCONNECTION Classes, but my application is in vc6,
now can any one tell whether CSTRINGA, CSTRINGW are available in vc6..
if not how overcome this problem

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

冰火雁神 2024-09-04 03:33:57

是的,CStringA和CStringW是VC6中的。

不要使用VC6。

Yes, CStringA and CStringW are in VC6.

Don't use VC6.

止于盛夏 2024-09-04 03:33:57

不是答案,而是寻找的方向:CStringA 和 CStringW 是 CString 的两个特化,分别用于 ASCII (A) 和宽字符 (W) 版本。

Not an answer, but a direction to look: CStringA and CStringW are two specializations of CString, for ASCII (A) and wide-character (W) versions.

与酒说心事 2024-09-04 03:33:57

VC6 中的一些基本测试表明,VC6 编译器无法识别 CStringW 和 CStringA。

但是,CString (afx.h) 的头文件指定它接受 ANSI 和 Unicode 输入。也许你可以这样做

#define CStringA CString
#define CStringW CString

Some basic tests in VC6 revealed that CStringW and CStringA are not recognized by the VC6 compiler.

However, the header file for CString (afx.h) specifies that it accepts both ANSI and Unicode inputs. Maybe you could just do

#define CStringA CString
#define CStringW CString
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文