Share via


CE_REGISTRY_INFO (Compact 2013)

3/26/2014

This structure stores information in a registry key.

Syntax

typedef struct _CE_REGISTRY_INFO{
  DWORD cbSize;
  HKEY hRootKey;
  DWORD dwFlags;
  TCHAR *pszFullKeyName;
  LPDWORD pdwKeyNameLen;
} CE_REGISTRY_INFO, *PCE_REGISTRY_INFO;

Members

  • cbSize
    Set to sizeof(CE_REGISTRY_INFO).
  • hRootKey
    Root key of the registry, for example, HKLM or HKCU.
  • dwFlags
    Flag value that can be set to CE_REG_INFO_FLAG_TRUST_PROTECTED. This value specifies that the registry key is protected from unprivileged applications.
  • pszFullKeyName
    Buffer to receive the key name.
  • pdwKeyNameLen
    Size, in characters, including the NULL terminator, of the buffer for the key name buffer.

Requirements

Header

fsioctl.h

See Also

Reference

Registry Structures
FSD Structures
FSCTL_GET_REGISTRY_INFO