RegSecureKeyList

This structure contains a array of RegSecureKey structures that is returned to Filesys.exe when the IOCTL_HAL_GETREGSECUREKEYS IOCTL is received.

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

Members

  • dwNumKeys
    Indicates the number of array elements pointed to by pList structure pointer.
  • pList
    A 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 will protect data from this key all its subkeys.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Pwinreg.h.

See Also

IOCTL_HAL_GETREGSECUREKEYS | RegSecureKey

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.