Datatype used by Windows to store the color values of pixels in the generic Windows bitmap format (.bmp):

typedef struct tagRGBQUAD {
    BYTE    rgbBlue;
    BYTE    rgbGreen;
    BYTE    rgbRed;
    BYTE    rgbReserved;
} RGBQUAD;

See also COLORREF

Log in or register to write something here or to contact authors.