Re: opengl32: Enable per-app override for HKLM\Software\Wine\OpenGL: HKLM\Software\Wine\AppDefaults\app.exe\OpenGL.
On Mon, 2006-08-28 at 22:26 -0500, Ken Thomases wrote:
+ + /* @@ Wine registry key: HKLM\Software\Wine\OpenGL */ + if ( RegOpenKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\\OpenGL", &hkey) ) hkey = 0; + + len = GetModuleFileNameA( 0, buffer, MAX_PATH ); + if (len && len < MAX_PATH) + { + HKEY tmpkey; + /* @@ Wine registry key: HKLM\Software\Wine\AppDefaults\app.exe \OpenGL */ + if (!RegOpenKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\ \AppDefaults", &tmpkey ))
Hi, I thought this stuff was supposed to be moved to HKCU instead of HKLM? Cheers, Paul.
Paul Vriens <Paul.Vriens(a)xs4all.nl> writes:
+ /* @@ Wine registry key: HKLM\Software\Wine\AppDefaults\app.exe \OpenGL */ + if (!RegOpenKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\ \AppDefaults", &tmpkey ))
Hi,
I thought this stuff was supposed to be moved to HKCU instead of HKLM?
Yes, it should go to HKCU. -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Paul Vriens