#ifndef _WINSTA_H
/**
* The WINSTATIONVIDEODATA structure defines the resolution and color depth of a session.
*
* \sa https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-tsts/5f95f657-89d2-472d-b4ab-b0595618dbd1
*/
typedef struct _WINSTATIONVIDEODATA
{
USHORT HResolution; // Specifies the horizontal resolution, in pixels.
USHORT VResolution; // Specifies the vertical resolution, in pixels.
USHORT ColorDepth; // Specifies the color depth.
} WINSTATIONVIDEODATA, *PWINSTATIONVIDEODATA;
View code on GitHubThis type is documented in the [MS-TSTS] specification.