// ksmedia.h
typedef struct tagKS_RGBQUAD {
BYTE rgbBlue;
BYTE rgbGreen;
BYTE rgbRed;
BYTE rgbReserved;
} KS_RGBQUAD, *PKS_RGBQUAD;
View the official Windows Driver Kit DDI referenceNo description available.
The KS_RGBQUAD structure describes a color consisting of relative intensities of red, green, and blue, ranging from 0 to 255 (0x0 to 0xff).
rgbBlueSpecifies the intensity of blue in the color.
rgbGreenSpecifies the intensity of green in the color.
rgbRedSpecifies the intensity of red in the color.
rgbReservedReserved. This member must be zero.