I'm developing a tiny Win32 app in C++.
I've studied C++ fundamentals long time ago, so now I completely confused because of character strings in C++. There were no WCHAR or TCHAR only char and String.
After a little investigation …
I have a simple problem with a conversion:
std::string str = "0xC0A80A02"
and I need to convert it to DWORD.
I searched on the web and found some solution but none seems to work.
try1:
DWORD m_dwIP = …