Oliver Stieber wrote:
With a lot of wines configuration moving over to
HKEY_LOCAL_USER and magic comments being added to
identify places where configuration is read, I though
it may be a good idea to move over to a standard
function for reading configuration instead of using
direct registry access.
Something like GetWineConfiguration(USER|MACHINE,
"PATH FROM .../wine/", "DEFAULT");
We want to stick to the Windows API in our code in order to make
compiling our code on Windows or Reactos easier. Every new non-standard
function we add makes porting more difficult, so we try to avoid adding
anything that's not in the Win32 API.
Mike