NAME

RegEnumKeyExW  (KERNELBASE.@)

SYNOPSIS

 LSTATUS RegEnumKeyExW
 (
  HKEY      hkey,
  DWORD     index,
  LPWSTR    name,
  LPDWORD   name_len,
  LPDWORD   reserved,
  LPWSTR    class,
  LPDWORD   class_len,
  FILETIME* ft
 )

DESCRIPTION

Enumerate subkeys of the specified open registry key.

PARAMS

hkey [In] Handle to key to enumerate.
index [In] Index of subkey to enumerate.
name [Out] Buffer for subkey name.
name_len [Out] Size of subkey buffer.
reserved [In] Reserved.
class [Out] Buffer for class string.
class_len [Out] Size of class buffer.
ft [Out] Time key last written to.

RETURNS

Success: ERROR_SUCCESS

Failure: System error code. If there are no more subkeys available, the function returns ERROR_NO_MORE_ITEMS.

IMPLEMENTATION

Declared in "winreg.h". https://source.winehq.org/source/include/winreg.h

Implemented in "dlls/kernelbase/registry.c". https://source.winehq.org/source/dlls/kernelbase/registry.c

Debug channel "reg".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.