// d3dkmdt.h
typedef union _DXGK_MONITORLINKINFO_USAGEHINTS {
struct {
UINT Hidden : 1;
UINT HeadMounted : 1;
UINT Reserved : 30;
};
UINT Value;
} DXGK_MONITORLINKINFO_USAGEHINTS, *PDXGK_MONITORLINKINFO_USAGEHINTS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_MONITORLINKINFO_USAGEHINTS structure provides hints to the driver on the intended usage of the display device (monitor).
HiddenWhen set, DxgKrnl will hide this display from Win32 so it cannot be a part of the desktop.
HeadMountedWhen set, the monitor is part of a head-mounted display (HMD) device.
ReservedThis value is reserved for system use.
ValueThe collective value of the flags as a single value.