http://bugs.winehq.org/show_bug.cgi?id=9357
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal Component|wine-misc |wine-advapi32
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2007-08-18 06:09:38 --- Just another note, it seems is indeed problem with RegsetValueEx. Next hack makes the application start fine:
diff --git a/dlls/advapi32/registry.c b/dlls/advapi32/registry.c index e62206b..290c16e 100644 --- a/dlls/advapi32/registry.c +++ b/dlls/advapi32/registry.c @@ -1014,6 +1014,7 @@ LONG WINAPI RegSetValueExW( HKEY hkey, LPCWSTR name, DWORD LONG WINAPI RegSetValueExA( HKEY hkey, LPCSTR name, DWORD reserved, DWORD type, CONST BYTE *data, DWORD count ) { +return 0; ANSI_STRING nameA; WCHAR *dataW = NULL; NTSTATUS status;