printf("%s", lpstr); printf("%s", lpcstr); #include <tchar.h> wprintf(L"%s", lpwstr); wprintf(L"%s", lpcwstr);
printf("%s", (const char*)lpstr); printf("%s", (const char*)lpcstr); #include <tchar.h> wprintf(L"%s", (const wchar_t*)lpwstr); wprintf(L"%s", (const wchar_t*)lpcwstr);