Reputation: 6386
How can i convet QString to LPCWSTR...
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
Upvotes: 2
Views: 1380
Reputation: 5538
You could use the toWCharArray function.
EDIT:
Here are some code snippets.
Upvotes: 5