REG_NOTIFY_INFORMATION

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure describes the changes found by the CeRegGetNotificationInfo function.

Syntax

typedef struct _REG_NOTIFY_INFORMATION {
  DWORD NextEntryOffset; 
  DWORD Action; 
  DWORD RegNameLength; 
  WCHAR RegName[1]; 
} REG_NOTIFY_INFORMATION, *PREG_NOTIFY_INFORMATION; 

Members

  • NextEntryOffset
    Number of bytes that must be skipped to get the next record. This member is set to zero to indicate that this is the last record.
  • Action
    Type of change that occurred. The following table shows possible values.

    Value Description

    FILE_ACTION_ADDED

    The sub-key was created under this key

    FILE_ACTION_MODIFIED

    A value was added or changed under this key.

    FILE_ACTION_REMOVED

    The sub-key or value was removed from this key.

  • RegNameLength
    Length of the RegName ** portion of the record, in bytes. The length does not include the terminating NULL character.
  • RegName
    Variable-length field that contains the subkey or value name for the directory handle. The name is in Unicode character format and is not null-terminated.

Requirements

Header winreg.h
Windows Embedded CE Windows Embedded CE 6.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

FSD Structures
CeRegGetNotificationInfo