Re: [8/9] setupapi: implement SetupPromptForDiskA by wrapping around W version
Juan Lang
19 Feb
2009
19 Feb
'09
12:33 a.m.
Hi Ricardo,
+ DialogTitleW = MultiByteToUnicode(DialogTitle, CP_UTF8);
You should be using CP_ACP here, not CP_UTF8. Same applies to
remaining character conversions. In fact, you could use strdupAtoW
instead.
--Juan