// d3dkmddi.h
typedef struct _DXGKARG_CONNECTDOORBELL_FLAGS {
union {
struct {
UINT RequireSecondaryAddress : 1;
UINT Reserved : 31;
};
UINT Value;
};
} DXGKARG_CONNECTDOORBELL_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_CONNECTDOORBELL_FLAGS structure specifies doorbell connection flags for DxgkDdiConnectDoorbell.
RequireSecondaryAddressIf UMD created this doorbell with the RequireSecondaryCpuVA flag, then Dxgkrnl sets this corresponding RequireSecondaryAddress flag to inform KMD that this doorbell requires two physical addresses.
ReservedReserved; set to zero.
ValueAn alternative way to access the structure members.
For more information, see User-mode work submission.