LINKED_DEVICE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// dispmprt.h

typedef struct _LINKED_DEVICE {
  ULONG   ChainUid;
  ULONG   NumberOfLinksInChain;
  BOOLEAN LeadLink;
} LINKED_DEVICE, *PLINKED_DEVICE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-dispmprt-_linked_device)

_LINKED_DEVICE structure

Description

The LINKED_DEVICE structure holds information that describes a linked display adapter configuration.

Members

ChainUid

A unique identifier for this chain of display adapters.

NumberOfLinksInChain

The expected number of linked adapters that the operating system should enumerate.

A value that indicates the leading link in the chain of linked adapters. The value is TRUE only for the adapter that will be allowed to enumerate child adapters. Otherwise, the value is FALSE.

Remarks

Prior to a call to DxgkDdiLinkDevice, the display miniport driver should fill the LINKED_DEVICE structure with information about the linked adapter configuration.

See also

DxgkDdiLinkDevice