Click here to Skip to main content
15,881,709 members

Comments by ptr_Electron (Top 4 by date)

ptr_Electron 18-Jan-18 7:31am View    
I am using on Android
ptr_Electron 19-Mar-16 3:35am View    
I am using Windows 7 and Microsoft visual C++ 2008. Please advise
ptr_Electron 18-Feb-16 15:35pm View    
Thank for responce.. but how can find the destination string length, and also could you please advise how to create wchar_t wSStr of dynamic length. Thanks

BYTE *bpString;
wchar_t wSStr[2000]; //and also want to do dynamically
mbstowcs(wSStr, (const char*)bpString, bpStringLen+1);
LPCWSTR lpwStr = wSStr;
ptr_Electron 18-Feb-16 14:21pm View    
Thanks for response.. no compilers errors. the line mbstowcs crashes, and also want to do dynamically depending on bpString size, instead of hard coding to 2000
Please advise. Thank you

wchar_t wSStr[2000]; //and also want to do dynamically
mbstowcs(wSStr, (const char*)bpString, bpStringLen+1);
LPWSTR lpwStr = wSStr;