DRT_LEAFSET_KEY_CHANGE_TYPE enumeration (drt.h)

The DRT_LEAFSET_KEY_CHANGE_TYPE enumeration defines the set of changes that can occur on nodes in the leaf set of a locally registered key.

Syntax

typedef enum drt_leafset_key_change_type_tag {
  DRT_LEAFSET_KEY_ADDED = 0,
  DRT_LEAFSET_KEY_DELETED = 1
} DRT_LEAFSET_KEY_CHANGE_TYPE;

Constants

 
DRT_LEAFSET_KEY_ADDED
Value: 0
A node was added to the DRT leaf set of the local node.
DRT_LEAFSET_KEY_DELETED
Value: 1
A node was deleted from the DRT leaf set of the local node.

Remarks

This enumeration is used to determine the event type returned by DrtGetEventData, which is called with the event handle passed to DrtOpen.

Requirements

Requirement Value
Minimum supported client Windows 7 Professional [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Header drt.h

See also

DrtGetEventData

DrtOpen