// d3dkmddi.h
typedef struct _DXGK_DEVICE_TYPE_CAPS {
union {
struct {
UINT32 Discrete : 1;
UINT32 Detachable : 1;
UINT32 Reserved : 30;
};
UINT32 Value;
};
} DXGK_DEVICE_TYPE_CAPS;
View the official Windows Driver Kit DDI referenceNo description available.
Describes the type of capabilities for a device.
DiscreteThe device is discrete.
DetachableThe device is detachable.
ReservedReserved.
Value