DEBUG_DEVICE_ADDRESS - NtDoc

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

typedef struct {
  UCHAR   Type;
  BOOLEAN Valid;
  union {
    UCHAR Reserved[2];
    struct {
      UCHAR BitWidth;
      UCHAR AccessSize;
    };
  };
  PUCHAR  TranslatedAddress;
  ULONG   Length;
} DEBUG_DEVICE_ADDRESS, *PDEBUG_DEVICE_ADDRESS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddk-debug_device_address)

Description

This topic describes the DEBUG_DEVICE_ADDRESS structure.

Members

Type

Defines the UCHAR member Type (the CmResourceType).

Valid

Defines the BOOLEAN member Valid.

Reserved

Reserved for future use.

BitWidth

Defines the UCHAR member BitWidth.

AccessSize

Defines the UCHAR member AccessSize.

TranslatedAddress

Defines the PUCHAR member TranslatedAddress.

Length

Defines the UCHAR member Length.

Remarks

See also