// dispmprt.h
typedef enum {
DockStateUnsupported,
DockStateUnDocked,
DockStateDocked,
DockStateUnknown
} DOCKING_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The DOCKING_STATE enumeration is used to describe the state of a portable computer that can be attached to a docking station.
DockStateUnsupportedIndicates that the portable computer does not support docking.
DockStateUnDockedIndicates that the portable computer is not docked.
DockStateDockedIndicates that the portable computer is docked.
DockStateUnknownIndicates that the docking state of the portable computer is not known.