RegOpenKeyExA (ADVAPI32.@)
LSTATUS RegOpenKeyExA ( HKEY hkey, LPCSTR name, DWORD reserved, REGSAM access, PHKEY retkey )
Open a registry key.
hkey | [In] | Handle of open key. |
name | [In] | Name of subkey to open. |
reserved | [In] | Reserved - must be zero. |
access | [In] | Security access mask. |
retkey | [Out] | Handle to open key. |
Success: ERROR_SUCCESS
Failure: A standard Win32 error code. retkey is set to 0.
Unlike RegCreateKeyExA, this function will not create the key if it does not exist.
Defined in "winreg.h".
Implemented in "dlls/advapi32/registry.c". source.winehq.org/source/dlls/advapi32/registry.c
Debug channel "reg".
Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jan 2008.