SNodeID2 structure (mmc.h)

The SNodeID2 structure is introduced in MMC 1.2, and replaces the SNodeID structure.

The SNodeID2 structure is used by the CCF_NODEID2 clipboard format.

The SNodeID2 structure contains an array of bytes that represent the node ID.

Syntax

typedef struct _SNodeID2 {
  DWORD dwFlags;
  DWORD cBytes;
  BYTE  id[1];
} SNodeID2;

Members

dwFlags

Currently, only the MMC_NODEID_SLOW_RETRIEVAL flag is defined for dwFlags. If this flag is set, MMC will not persist the specified scope item except where absolutely necessary, as for example for console taskpads. Console taskpads always persist the target items and task target items.

cBytes

The count of bytes in the id array.

id[1]

The bytes that contains the node ID of the scope item.

Remarks

For details on using the SNodeID2 structure with the CCF_NODEID2 clipboard format, see CCF_NODEID2.

Requirements

Requirement Value
Minimum supported client Windows Vista
Minimum supported server Windows Server 2008
Header mmc.h

See also

CCF_NODEID2