On Tue, Mar 29, 2005 at 12:26:47AM -0500, Dimitrie O. Paun wrote:
ChangeLog Unicodify WINSPOOL_OpenDriverReg().
Index: dlls/winspool/info.c
RCS file: /var/cvs/wine/dlls/winspool/info.c,v retrieving revision 1.101 diff -u -r1.101 info.c --- dlls/winspool/info.c 21 Feb 2005 18:33:55 -0000 1.101 +++ dlls/winspool/info.c 29 Mar 2005 05:23:05 -0000 @@ -70,8 +70,13 @@
static const char Printers[] = "System\CurrentControlSet\control\Print\Printers\"; -static const char Drivers[] = -"System\CurrentControlSet\control\Print\Environments\%s\Drivers\";
+static const WCHAR DriversW[] = { 'S','y','s','t','e','m','\','\',
'C','u', 'r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\','\\',
'c','o','n','t','r','o','l','\\','\\',
'P','r','i','n','t','\\','\\',
'E','n','v','i','r','o','n','m','e','n','t','s','\\','\\',
'%','s','\\','\\','D','r','i','v','e','r','s','\\','\\',0 };
That's not quite right. I guess you need to tweak your unicodification macro ;-)
Huw.