From 8c875f8d13633d2418465e5ea16f24f062d530da Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 29 Mar 2002 18:20:03 +0000 Subject: [PATCH] Load classes.dat too. --- misc/registry.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/misc/registry.c b/misc/registry.c index 378c7a64950..fb9242b7506 100644 --- a/misc/registry.c +++ b/misc/registry.c @@ -1490,6 +1490,10 @@ static void _load_windows_registry( HKEY hkey_users_default ) strcat(path,"\\system.dat"); _convert_and_load_native_registry(path,HKEY_LOCAL_MACHINE,REG_WIN95,0); + strcpy(path,windir); + strcat(path,"\\classes.dat"); + _convert_and_load_native_registry(path,HKEY_CLASSES_ROOT,REG_WIN95,0); + if (PROFILE_GetWineIniString("Wine","Profile","",path,MAX_PATHNAME_LEN)) { /* user specific user.dat */ strncat(path, "\\user.dat", MAX_PATHNAME_LEN - strlen(path) - 1);