how I can convert string to tchar in VC++?
string internetprotocol=\"127.4.5.6\";
TCHAR szProxyAddr[16];
i want to
You may try like this:
#include _tcscpy_s(szProxyAddr, CA2T(internetprotocol.c_str()));