tags:

views:

42

answers:

1

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

+2  A: 

You could use the toWCharArray function.

EDIT:

Here are some code snippets.

the_void