VC6编译错误
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,CStringA和CStringW是VC6中的。
不要使用VC6。
Yes, CStringA and CStringW are in VC6.
Don't use VC6.
不是答案,而是寻找的方向: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.
VC6 中的一些基本测试表明,VC6 编译器无法识别 CStringW 和 CStringA。
但是,CString (afx.h) 的头文件指定它接受 ANSI 和 Unicode 输入。也许你可以这样做
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