Help on LPCWSTR
How can i convet QString to LPCWSTR...
开发者_StackOverflow社区QString a = QString("\\.\%1:").arg( "G" );
i have to use it for the below function
HANDLE hDevice = CreateFile ( a ,0,FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
// NULL, OPEN_EXISTING, 0, NULL);
Thank you
You could use the toWCharArray function.
EDIT:
Here are some code snippets.
精彩评论