Scroll to navigation

SHEnumKeyExA(3w) Wine API SHEnumKeyExA(3w)

NAME

SHEnumKeyExA (SHLWAPI.@)

SYNOPSIS

LONG SHEnumKeyExA
(
HKEY hKey,
DWORD dwIndex,
LPSTR lpszSubKey,
LPDWORD pwLen
)
 

DESCRIPTION

Enumerate sub keys in a registry key.
 

PARAMS

hKey [In] Handle to registry key.
dwIndex [In] Index of key to enumerate.
lpszSubKey [Out] Pointer updated with the subkey name.
pwLen [Out] Pointer updated with the subkey length.
 

RETURNS

Success: ERROR_SUCCESS. lpszSubKey and pwLen are updated.
Failure: An error code from RegEnumKeyExA(3w).
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/reg.c".
Debug channel "shell".
Oct 2012 Wine API