2 * WineCfg configuration management
4 * Copyright 2002 Jaco Greeff
5 * Copyright 2003 Dimitrie O. Paun
6 * Copyright 2003-2004 Mike Hearn
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 * - Icons in listviews/icons
25 * - Better add app dialog, scan c: for EXE files and add to list in background
26 * - Use [GNOME] HIG style groupboxes rather than win32 style (looks nicer, imho)
30 #define WIN32_LEAN_AND_MEAN
37 #include <wine/unicode.h>
38 #include <wine/debug.h>
39 #include <wine/list.h>
41 WINE_DEFAULT_DEBUG_CHANNEL(winecfg
);
46 static const BOOL is_win64
= (sizeof(void *) > sizeof(int));
48 HKEY config_key
= NULL
;
49 HMENU hPopupMenus
= 0;
52 /* this is called from the WM_SHOWWINDOW handlers of each tab page.
54 * it's a nasty hack, necessary because the property sheet insists on resetting the window title
55 * to the title of the tab, which is utterly useless. dropping the property sheet is on the todo list.
57 void set_window_title(HWND dialog
)
61 /* update the window title */
65 LoadStringW(GetModuleHandleW(NULL
), IDS_WINECFG_TITLE_APP
, apptitle
, ARRAY_SIZE(apptitle
));
66 wsprintfW (newtitle
, apptitle
, current_app
);
70 LoadStringW(GetModuleHandleW(NULL
), IDS_WINECFG_TITLE
, newtitle
, ARRAY_SIZE(newtitle
));
73 WINE_TRACE("setting title to %s\n", wine_dbgstr_w (newtitle
));
74 SendMessageW (GetParent(dialog
), PSM_SETTITLEW
, 0, (LPARAM
) newtitle
);
78 WCHAR
* load_string (UINT id
)
84 LoadStringW(GetModuleHandleW(NULL
), id
, buf
, ARRAY_SIZE(buf
));
87 newStr
= HeapAlloc (GetProcessHeap(), 0, (len
+ 1) * sizeof (WCHAR
));
88 memcpy (newStr
, buf
, len
* sizeof (WCHAR
));
94 * get_config_key: Retrieves a configuration value from the registry
96 * char *subkey : the name of the config section
97 * char *name : the name of the config value
98 * char *default : if the key isn't found, return this value instead
100 * Returns a buffer holding the value if successful, NULL if
101 * not. Caller is responsible for releasing the result.
104 static WCHAR
*get_config_key (HKEY root
, const WCHAR
*subkey
, const WCHAR
*name
, const WCHAR
*def
)
106 LPWSTR buffer
= NULL
;
111 WINE_TRACE("subkey=%s, name=%s, def=%s\n", wine_dbgstr_w(subkey
),
112 wine_dbgstr_w(name
), wine_dbgstr_w(def
));
114 res
= RegOpenKeyExW(root
, subkey
, 0, MAXIMUM_ALLOWED
, &hSubKey
);
115 if (res
!= ERROR_SUCCESS
)
117 if (res
== ERROR_FILE_NOT_FOUND
)
119 WINE_TRACE("Section key not present - using default\n");
120 return def
? strdupW(def
) : NULL
;
124 WINE_ERR("RegOpenKey failed on wine config key (res=%d)\n", res
);
129 res
= RegQueryValueExW(hSubKey
, name
, NULL
, NULL
, NULL
, &len
);
130 if (res
== ERROR_FILE_NOT_FOUND
)
132 WINE_TRACE("Value not present - using default\n");
133 buffer
= def
? strdupW(def
) : NULL
;
135 } else if (res
!= ERROR_SUCCESS
)
137 WINE_ERR("Couldn't query value's length (res=%d)\n", res
);
141 buffer
= HeapAlloc(GetProcessHeap(), 0, len
+ sizeof(WCHAR
));
143 RegQueryValueExW(hSubKey
, name
, NULL
, NULL
, (LPBYTE
) buffer
, &len
);
145 WINE_TRACE("buffer=%s\n", wine_dbgstr_w(buffer
));
147 RegCloseKey(hSubKey
);
153 * set_config_key: convenience wrapper to set a key/value pair
155 * const char *subKey : the name of the config section
156 * const char *valueName : the name of the config value
157 * const char *value : the value to set the configuration key to
159 * Returns 0 on success, non-zero otherwise
161 * If valueName or value is NULL, an empty section will be created
163 static int set_config_key(HKEY root
, const WCHAR
*subkey
, REGSAM access
, const WCHAR
*name
, const void *value
, DWORD type
)
168 WINE_TRACE("subkey=%s: name=%s, value=%p, type=%d\n", wine_dbgstr_w(subkey
),
169 wine_dbgstr_w(name
), value
, type
);
171 assert( subkey
!= NULL
);
175 res
= RegCreateKeyExW( root
, subkey
, 0, NULL
, REG_OPTION_NON_VOLATILE
,
176 access
, NULL
, &key
, NULL
);
177 if (res
!= ERROR_SUCCESS
) goto end
;
180 if (name
== NULL
|| value
== NULL
) goto end
;
184 case REG_SZ
: res
= RegSetValueExW(key
, name
, 0, REG_SZ
, value
, (lstrlenW(value
)+1)*sizeof(WCHAR
)); break;
185 case REG_DWORD
: res
= RegSetValueExW(key
, name
, 0, REG_DWORD
, value
, sizeof(DWORD
)); break;
187 if (res
!= ERROR_SUCCESS
) goto end
;
191 if (key
&& key
!= root
) RegCloseKey(key
);
193 WINE_ERR("Unable to set configuration key %s in section %s, res=%d\n",
194 wine_dbgstr_w(name
), wine_dbgstr_w(subkey
), res
);
198 /* ========================================================================= */
200 /* This code exists for the following reasons:
202 * - It makes working with the registry easier
203 * - By storing a mini cache of the registry, we can more easily implement
204 * cancel/revert and apply. The 'settings list' is an overlay on top of
205 * the actual registry data that we can write out at will.
207 * Rather than model a tree in memory, we simply store each absolute (rooted
208 * at the config key) path.
215 HKEY root
; /* the key on which path is rooted */
216 WCHAR
*path
; /* path in the registry rooted at root */
217 WCHAR
*name
; /* name of the registry value. if null, this means delete the key */
218 WCHAR
*value
; /* contents of the registry value. if null, this means delete the value */
219 DWORD type
; /* type of registry value. REG_SZ or REG_DWORD for now */
222 static struct list settings
= LIST_INIT(settings
);
224 static void free_setting(struct setting
*setting
)
226 assert( setting
!= NULL
);
227 assert( setting
->path
);
229 WINE_TRACE("destroying %p: %s\n", setting
,
230 wine_dbgstr_w(setting
->path
));
232 HeapFree(GetProcessHeap(), 0, setting
->path
);
233 HeapFree(GetProcessHeap(), 0, setting
->name
);
234 HeapFree(GetProcessHeap(), 0, setting
->value
);
236 list_remove(&setting
->entry
);
238 HeapFree(GetProcessHeap(), 0, setting
);
242 * Returns the contents of the value at path. If not in the settings
243 * list, it will be fetched from the registry - failing that, the
244 * default will be used.
246 * If already in the list, the contents as given there will be
247 * returned. You are expected to HeapFree the result.
249 WCHAR
*get_reg_keyW(HKEY root
, const WCHAR
*path
, const WCHAR
*name
, const WCHAR
*def
)
255 WINE_TRACE("path=%s, name=%s, def=%s\n", wine_dbgstr_w(path
),
256 wine_dbgstr_w(name
), wine_dbgstr_w(def
));
258 /* check if it's in the list */
259 LIST_FOR_EACH( cursor
, &settings
)
261 s
= LIST_ENTRY(cursor
, struct setting
, entry
);
263 if (root
!= s
->root
) continue;
264 if (lstrcmpiW(path
, s
->path
) != 0) continue;
265 if (!s
->name
) continue;
266 if (lstrcmpiW(name
, s
->name
) != 0) continue;
268 WINE_TRACE("found %s:%s in settings list, returning %s\n",
269 wine_dbgstr_w(path
), wine_dbgstr_w(name
),
270 wine_dbgstr_w(s
->value
));
271 return s
->value
? strdupW(s
->value
) : NULL
;
274 /* no, so get from the registry */
275 val
= get_config_key(root
, path
, name
, def
);
277 WINE_TRACE("returning %s\n", wine_dbgstr_w(val
));
282 char *get_reg_key(HKEY root
, const char *path
, const char *name
, const char *def
)
284 WCHAR
*wpath
, *wname
, *wdef
= NULL
, *wRet
= NULL
;
288 WINE_TRACE("path=%s, name=%s, def=%s\n", path
, name
, def
);
290 wpath
= HeapAlloc(GetProcessHeap(), 0, (strlen(path
)+1)*sizeof(WCHAR
));
291 wname
= HeapAlloc(GetProcessHeap(), 0, (strlen(name
)+1)*sizeof(WCHAR
));
293 MultiByteToWideChar(CP_ACP
, 0, path
, -1, wpath
, strlen(path
)+1);
294 MultiByteToWideChar(CP_ACP
, 0, name
, -1, wname
, strlen(name
)+1);
298 wdef
= HeapAlloc(GetProcessHeap(), 0, (strlen(def
)+1)*sizeof(WCHAR
));
299 MultiByteToWideChar(CP_ACP
, 0, def
, -1, wdef
, strlen(def
)+1);
302 wRet
= get_reg_keyW(root
, wpath
, wname
, wdef
);
304 len
= WideCharToMultiByte(CP_ACP
, 0, wRet
, -1, NULL
, 0, NULL
, NULL
);
307 szRet
= HeapAlloc(GetProcessHeap(), 0, len
);
308 WideCharToMultiByte(CP_ACP
, 0, wRet
, -1, szRet
, len
, NULL
, NULL
);
311 HeapFree(GetProcessHeap(), 0, wpath
);
312 HeapFree(GetProcessHeap(), 0, wname
);
313 HeapFree(GetProcessHeap(), 0, wdef
);
314 HeapFree(GetProcessHeap(), 0, wRet
);
320 * Used to set a registry key.
322 * path is rooted at the config key, ie use "Version" or
323 * "AppDefaults\\fooapp.exe\\Version". You can use keypath()
324 * to get such a string.
326 * name is the value name, or NULL to delete the path.
328 * value is what to set the value to, or NULL to delete it.
330 * type is REG_SZ or REG_DWORD.
332 * These values will be copied when necessary.
334 static void set_reg_key_ex(HKEY root
, const WCHAR
*path
, const WCHAR
*name
, const void *value
, DWORD type
)
339 assert( path
!= NULL
);
341 WINE_TRACE("path=%s, name=%s, value=%s\n", wine_dbgstr_w(path
),
342 wine_dbgstr_w(name
), wine_dbgstr_w(value
));
344 /* firstly, see if we already set this setting */
345 LIST_FOR_EACH( cursor
, &settings
)
347 struct setting
*s
= LIST_ENTRY(cursor
, struct setting
, entry
);
349 if (root
!= s
->root
) continue;
350 if (lstrcmpiW(s
->path
, path
) != 0) continue;
351 if ((s
->name
&& name
) && lstrcmpiW(s
->name
, name
) != 0) continue;
353 /* are we attempting a double delete? */
354 if (!s
->name
&& !name
) return;
356 /* do we want to undelete this key? */
357 if (!s
->name
&& name
) s
->name
= strdupW(name
);
359 /* yes, we have already set it, so just replace the content and return */
360 HeapFree(GetProcessHeap(), 0, s
->value
);
365 s
->value
= value
? strdupW(value
) : NULL
;
368 s
->value
= HeapAlloc(GetProcessHeap(), 0, sizeof(DWORD
));
369 memcpy( s
->value
, value
, sizeof(DWORD
) );
373 /* are we deleting this key? this won't remove any of the
374 * children from the overlay so if the user adds it again in
375 * that session it will appear to undelete the settings, but
376 * in reality only the settings actually modified by the user
377 * in that session will be restored. we might want to fix this
378 * corner case in future by actually deleting all the children
379 * here so that once it's gone, it's gone.
381 if (!name
) s
->name
= NULL
;
386 /* otherwise add a new setting for it */
387 s
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct setting
));
389 s
->path
= strdupW(path
);
390 s
->name
= name
? strdupW(name
) : NULL
;
395 s
->value
= value
? strdupW(value
) : NULL
;
398 s
->value
= HeapAlloc(GetProcessHeap(), 0, sizeof(DWORD
));
399 memcpy( s
->value
, value
, sizeof(DWORD
) );
403 list_add_tail(&settings
, &s
->entry
);
406 void set_reg_key(HKEY root
, const char *path
, const char *name
, const char *value
)
408 WCHAR
*wpath
, *wname
= NULL
, *wvalue
= NULL
;
410 wpath
= HeapAlloc(GetProcessHeap(), 0, (strlen(path
)+1)*sizeof(WCHAR
));
411 MultiByteToWideChar(CP_ACP
, 0, path
, -1, wpath
, strlen(path
)+1);
415 wname
= HeapAlloc(GetProcessHeap(), 0, (strlen(name
)+1)*sizeof(WCHAR
));
416 MultiByteToWideChar(CP_ACP
, 0, name
, -1, wname
, strlen(name
)+1);
421 wvalue
= HeapAlloc(GetProcessHeap(), 0, (strlen(value
)+1)*sizeof(WCHAR
));
422 MultiByteToWideChar(CP_ACP
, 0, value
, -1, wvalue
, strlen(value
)+1);
425 set_reg_key_ex(root
, wpath
, wname
, wvalue
, REG_SZ
);
427 HeapFree(GetProcessHeap(), 0, wpath
);
428 HeapFree(GetProcessHeap(), 0, wname
);
429 HeapFree(GetProcessHeap(), 0, wvalue
);
432 void set_reg_key_dword(HKEY root
, const char *path
, const char *name
, DWORD value
)
434 WCHAR
*wpath
, *wname
;
436 wpath
= HeapAlloc(GetProcessHeap(), 0, (strlen(path
)+1)*sizeof(WCHAR
));
437 wname
= HeapAlloc(GetProcessHeap(), 0, (strlen(name
)+1)*sizeof(WCHAR
));
439 MultiByteToWideChar(CP_ACP
, 0, path
, -1, wpath
, strlen(path
)+1);
440 MultiByteToWideChar(CP_ACP
, 0, name
, -1, wname
, strlen(name
)+1);
442 set_reg_key_ex(root
, wpath
, wname
, &value
, REG_DWORD
);
444 HeapFree(GetProcessHeap(), 0, wpath
);
445 HeapFree(GetProcessHeap(), 0, wname
);
448 void set_reg_keyW(HKEY root
, const WCHAR
*path
, const WCHAR
*name
, const WCHAR
*value
)
450 set_reg_key_ex(root
, path
, name
, value
, REG_SZ
);
453 void set_reg_key_dwordW(HKEY root
, const WCHAR
*path
, const WCHAR
*name
, DWORD value
)
455 set_reg_key_ex(root
, path
, name
, &value
, REG_DWORD
);
459 * enumerates the value names at the given path, taking into account
460 * the changes in the settings list.
462 * you are expected to HeapFree each element of the array, which is null
463 * terminated, as well as the array itself.
465 static WCHAR
**enumerate_valuesW(HKEY root
, WCHAR
*path
)
468 DWORD res
, i
= 0, valueslen
= 0;
469 WCHAR
**values
= NULL
;
472 res
= RegOpenKeyExW(root
, path
, 0, MAXIMUM_ALLOWED
, &key
);
473 if (res
== ERROR_SUCCESS
)
478 DWORD namesize
= ARRAY_SIZE(name
);
479 BOOL removed
= FALSE
;
481 /* find out the needed size, allocate a buffer, read the value */
482 if ((res
= RegEnumValueW(key
, i
, name
, &namesize
, NULL
, NULL
, NULL
, NULL
)) != ERROR_SUCCESS
)
485 WINE_TRACE("name=%s\n", wine_dbgstr_w(name
));
487 /* check if this value name has been removed in the settings list */
488 LIST_FOR_EACH( cursor
, &settings
)
490 struct setting
*s
= LIST_ENTRY(cursor
, struct setting
, entry
);
491 if (lstrcmpiW(s
->path
, path
) != 0) continue;
492 if (lstrcmpiW(s
->name
, name
) != 0) continue;
496 WINE_TRACE("this key has been removed, so skipping\n");
502 if (removed
) /* this value was deleted by the user, so don't include it */
508 /* grow the array if necessary, add buffer to it, iterate */
509 if (values
) values
= HeapReAlloc(GetProcessHeap(), 0, values
, sizeof(WCHAR
*) * (valueslen
+ 1));
510 else values
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
*));
512 values
[valueslen
++] = strdupW(name
);
513 WINE_TRACE("valueslen is now %d\n", valueslen
);
519 WINE_WARN("failed opening registry key %s, res=0x%x\n",
520 wine_dbgstr_w(path
), res
);
523 WINE_TRACE("adding settings in list but not registry\n");
525 /* now we have to add the values that aren't in the registry but are in the settings list */
526 LIST_FOR_EACH( cursor
, &settings
)
528 struct setting
*setting
= LIST_ENTRY(cursor
, struct setting
, entry
);
531 if (lstrcmpiW(setting
->path
, path
) != 0) continue;
533 if (!setting
->value
) continue;
535 for (i
= 0; i
< valueslen
; i
++)
537 if (lstrcmpiW(setting
->name
, values
[i
]) == 0)
546 WINE_TRACE("%s in list but not registry\n", wine_dbgstr_w(setting
->name
));
548 /* otherwise it's been set by the user but isn't in the registry */
549 if (values
) values
= HeapReAlloc(GetProcessHeap(), 0, values
, sizeof(WCHAR
*) * (valueslen
+ 1));
550 else values
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
*));
552 values
[valueslen
++] = strdupW(setting
->name
);
555 WINE_TRACE("adding null terminator\n");
558 values
= HeapReAlloc(GetProcessHeap(), 0, values
, sizeof(WCHAR
*) * (valueslen
+ 1));
559 values
[valueslen
] = NULL
;
567 char **enumerate_values(HKEY root
, char *path
)
572 int i
=0, len
=0, size
;
574 wpath
= HeapAlloc(GetProcessHeap(), 0, (strlen(path
)+1)*sizeof(WCHAR
));
575 MultiByteToWideChar(CP_ACP
, 0, path
, -1, wpath
, strlen(path
)+1);
577 wret
= enumerate_valuesW(root
, wpath
);
581 for(len
=0; wret
[len
]; len
++);
582 ret
= HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(char*));
584 /* convert WCHAR ** to char ** and HeapFree each WCHAR * element on our way */
585 for (i
=0; i
<len
; i
++)
587 size
= WideCharToMultiByte(CP_ACP
, 0, wret
[i
], -1, NULL
, 0, NULL
, NULL
);
590 ret
[i
] = HeapAlloc(GetProcessHeap(), 0, size
);
591 WideCharToMultiByte(CP_ACP
, 0, wret
[i
], -1, ret
[i
], size
, NULL
, NULL
);
592 HeapFree(GetProcessHeap(), 0, wret
[i
]);
598 HeapFree(GetProcessHeap(), 0, wpath
);
599 HeapFree(GetProcessHeap(), 0, wret
);
605 * returns true if the given key/value pair exists in the registry or
606 * has been written to.
608 BOOL
reg_key_exists(HKEY root
, const char *path
, const char *name
)
610 char *val
= get_reg_key(root
, path
, name
, NULL
);
614 HeapFree(GetProcessHeap(), 0, val
);
621 static void process_setting(struct setting
*s
)
623 static const WCHAR softwareW
[] = {'S','o','f','t','w','a','r','e','\\'};
625 BOOL needs_wow64
= (is_win64
&& s
->root
== HKEY_LOCAL_MACHINE
&& s
->path
&&
626 !strncmpiW( s
->path
, softwareW
, sizeof(softwareW
)/sizeof(WCHAR
) ));
630 WINE_TRACE("Setting %s:%s to '%s'\n", wine_dbgstr_w(s
->path
),
631 wine_dbgstr_w(s
->name
), wine_dbgstr_w(s
->value
));
632 set_config_key(s
->root
, s
->path
, MAXIMUM_ALLOWED
, s
->name
, s
->value
, s
->type
);
635 WINE_TRACE("Setting 32-bit %s:%s to '%s'\n", wine_dbgstr_w(s
->path
),
636 wine_dbgstr_w(s
->name
), wine_dbgstr_w(s
->value
));
637 set_config_key(s
->root
, s
->path
, MAXIMUM_ALLOWED
| KEY_WOW64_32KEY
, s
->name
, s
->value
, s
->type
);
642 WINE_TRACE("Removing %s:%s\n", wine_dbgstr_w(s
->path
), wine_dbgstr_w(s
->name
));
643 if (!RegOpenKeyExW( s
->root
, s
->path
, 0, MAXIMUM_ALLOWED
, &key
))
645 /* NULL name means remove that path/section entirely */
646 if (s
->name
) RegDeleteValueW( key
, s
->name
);
649 RegDeleteTreeW( key
, NULL
);
650 RegDeleteKeyW( s
->root
, s
->path
);
656 WINE_TRACE("Removing 32-bit %s:%s\n", wine_dbgstr_w(s
->path
), wine_dbgstr_w(s
->name
));
657 if (!RegOpenKeyExW( s
->root
, s
->path
, 0, MAXIMUM_ALLOWED
| KEY_WOW64_32KEY
, &key
))
659 if (s
->name
) RegDeleteValueW( key
, s
->name
);
662 RegDeleteTreeW( key
, NULL
);
663 RegDeleteKeyExW( s
->root
, s
->path
, KEY_WOW64_32KEY
, 0 );
673 if (list_empty(&settings
)) return; /* we will be called for each page when the user clicks OK */
677 while (!list_empty(&settings
))
679 struct setting
*s
= (struct setting
*) list_head(&settings
);
685 /* ================================== utility functions ============================ */
687 WCHAR
* current_app
= NULL
; /* the app we are currently editing, or NULL if editing global */
689 /* returns a registry key path suitable for passing to addTransaction */
690 char *keypath(const char *section
)
692 static char *result
= NULL
;
694 HeapFree(GetProcessHeap(), 0, result
);
698 result
= HeapAlloc(GetProcessHeap(), 0, strlen("AppDefaults\\") + lstrlenW(current_app
)*2 + 2 /* \\ */ + strlen(section
) + 1 /* terminator */);
699 wsprintfA(result
, "AppDefaults\\%ls", current_app
);
700 if (section
[0]) sprintf( result
+ strlen(result
), "\\%s", section
);
704 result
= strdupA(section
);
710 WCHAR
*keypathW(const WCHAR
*section
)
712 static const WCHAR appdefaultsW
[] = {'A','p','p','D','e','f','a','u','l','t','s','\\',0};
713 static WCHAR
*result
= NULL
;
715 HeapFree(GetProcessHeap(), 0, result
);
719 DWORD len
= sizeof(appdefaultsW
) + (lstrlenW(current_app
) + lstrlenW(section
) + 1) * sizeof(WCHAR
);
720 result
= HeapAlloc(GetProcessHeap(), 0, len
);
721 lstrcpyW( result
, appdefaultsW
);
722 lstrcatW( result
, current_app
);
725 len
= lstrlenW(result
);
726 result
[len
++] = '\\';
727 lstrcpyW( result
+ len
, section
);
732 result
= strdupW(section
);
738 void PRINTERROR(void)
742 FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER
|FORMAT_MESSAGE_FROM_SYSTEM
,
743 0, GetLastError(), MAKELANGID(LANG_NEUTRAL
,SUBLANG_DEFAULT
),
744 (LPSTR
)&msg
, 0, NULL
);
746 /* eliminate trailing newline, is this a Wine bug? */
747 *(strrchr(msg
, '\r')) = '\0';
749 WINE_TRACE("error: '%s'\n", msg
);
752 BOOL
initialize(HINSTANCE hInstance
)
754 DWORD res
= RegCreateKeyA(HKEY_CURRENT_USER
, WINE_KEY_ROOT
, &config_key
);
756 if (res
!= ERROR_SUCCESS
) {
757 WINE_ERR("RegOpenKey failed on wine config key (%d)\n", res
);