WINSTATIONVIDEODATA - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif

View code on GitHub

NtDoc

This type is documented in the [MS-TSTS] specification.