// d3dkmthk.h
typedef struct _D3DKMT_OFFER_FLAGS {
union {
struct {
UINT OfferImmediately : 1;
UINT AllowDecommit : 1;
UINT Reserved : 30;
};
UINT Value;
};
} D3DKMT_OFFER_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
Contains information about offer flags.
OfferImmediatelyOffer immediately.
AllowDecommitAllow decommit.
ReservedReserved for internal use.
ValueThe value used to operate over the other members.