// d3dkmddi.h
typedef struct _DXGK_ADL_FLAGS {
union {
struct {
UINT32 Contiguous : 1;
UINT32 Reserved : 31;
};
UINT32 Value;
};
} DXGK_ADL_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_ADL_FLAGS structure specifies the flag(s) that apply to an address descriptor list (ADL).
ContiguousIndicates that the pages in the ADL are contiguous.
ReservedReserved for future use.
ValueAnother method to access the bits.