// d3dkmddi.h
typedef struct _DXGK_QUERYADAPTERINFOFLAGS {
union {
struct {
UINT VirtualMachineData : 1;
UINT SecureVirtualMachine : 1;
UINT Reserved : 30;
};
UINT Value;
};
} DXGK_QUERYADAPTERINFOFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_QUERYADAPTERINFOFLAGS structure specifies flags to use when querying graphics adapter information.
VirtualMachineDataSet when the call comes from a virtual machine.
SecureVirtualMachineSpecifies that the virtual machine runs in secure mode.
ReservedThis member is reserved and should be set to zero.
ValueA convenient way to access the flags.