CE_REGISTRY_INFO (Windows CE 5.0)

Send Feedback

This structure stores information on a registry key.

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, HKCU, and so on.
  • dwFlags
    Flag value that can be set to CE_REG_INFO_FLAG_TRUST_PROTECTED. This value specifies that the registry key is protected from untrusted applications.
  • pszFullKeyName
    Buffer to receive the key name.
  • pdwKeyNameLen
    Size, in characters, including the NULL terminator, of the buffer for key name buffer.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Fsioctl.h.

See Also

FSD Structures | FSCTL_GET_REGISTRY_INFO

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.