Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
683 views
in Technique[技术] by (71.8m points)

c++ - Convert WCHAR to LPCTSTR

With CSocket, I want to make a connect with an IP address.

CSocket client;
client.Create();
client.Connect(IP, 80);

But IP is defined WCHAR ip[16];

client.Connect(IP, 80) requires IP is LPCTSTR type

How can I convert from WCHAR to LPCTSTR ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you build for the Unicode character set (as any Windows program more recent than about 2000 should), LPCTSTR will be a typedef for LPCWSTR aka wchar_t const *, and a wchar_t[] array would decay to that.

If you build for the Multibyte character set, you'll have to convert your data. I suggest using CW2T() for that (it is actually a class, but is almost always used as a temporary object), eg:

client.Connect(CW2T(ip), 80);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...