RegOpenCurrentUser(3w)
NAME
RegOpenCurrentUser (ADVAPI32.@)
SYNOPSIS
LSTATUS RegOpenCurrentUser ( REGSAM access, PHKEY retkey )
DESCRIPTION
Get a handle to the HKEY_CURRENT_USER key for the user the current
thread is impersonating.
PARAMS
access [In] Desired access rights to the key.
retkey [Out] Handle to the opened key.
RETURNS
Success: ERROR_SUCCESS
Failure: nonzero error code from Winerror.h.
FIXME
This function is supposed to retrieve a handle to the HKEY_CURRENT_USER
for the user the current thread is impersonating. Since Wine does not
currently allow threads to impersonate other users, this stub should
work fine.
IMPLEMENTATION
Defined in "winreg.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/advapi32/registry.c".
- Debug channel "reg".