Scroll to navigation

RegOpenUserClassesRoot(3w) Wine API RegOpenUserClassesRoot(3w)

NAME

RegOpenUserClassesRoot (ADVAPI32.@)

SYNOPSIS

LSTATUS RegOpenUserClassesRoot
(
HANDLE hToken,
DWORD dwOptions,
REGSAM samDesired,
PHKEY phkResult
)
 

DESCRIPTION

Open the HKEY_CLASSES_ROOT key for a user.
 

PARAMS

hToken [In] Handle of token representing the user.
dwOptions [In] Reserved, must be 0.
samDesired [In] Desired access rights.
phkResult [Out] Destination for the resulting key handle.
 

RETURNS

Success: ERROR_SUCCESS
Failure: nonzero error code from Winerror.h.
 

NOTES

On Windows(tm) 2000 and upwards the HKEY_CLASSES_ROOT key is a view of the "HKEY_LOCAL_MACHINE
 

IMPLEMENTATION

Declared in "winreg.h".
Implemented in "dlls/advapi32/registry.c".
Debug channel "reg".
Oct 2012 Wine API