// d3dkmddi.h
typedef struct _DXGK_PREEMPTCOMMANDFLAGS {
union {
struct {
UINT Reserved : 32;
};
UINT Value;
};
} DXGK_PREEMPTCOMMANDFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_PREEMPTCOMMANDFLAGS structure specifies a union that contains either a structure with a reserved member or a 32-bit value. No bit-field flags are currently defined.
ReservedThis member is reserved and should be set to zero. Setting this member to zero is equivalent to setting all 32 bits (0xFFFFFFFF) of the 32-bit Value member to zeros.
ValueA member in the union that DXGK_PREEMPTCOMMANDFLAGS contains that can hold a 32-bit value.