Share via


RegSecureKeyList (Compact 2013)

3/26/2014

This structure contains an array of RegSecureKey structures that is returned to Filesys.dll when the IOCTL_HAL_GETREGSECUREKEYS (deprecated) I/O control is received.

Syntax

typedef struct RegSecureKeyList {
  DWORD dwNumKeys;
  RegSecureKey* pList;
} RegSecureKeyList;

Members

  • dwNumKeys
    Number of array elements pointed to by pList.
  • pList
    Pointer to an array of valid RegSecureKey structures.

Remarks

The key specified by pName must be a key directly off the root of HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, HKEY_USERS, or HKEY_CLASSES_ROOT. This protects data in this key and all its subkeys.

Requirements

Header

pwinreg.h

See Also

Reference

Registry Structures
RegSecureKey

Other Resources

IOCTL_HAL_GETREGSECUREKEYS (deprecated)