RGBQUAD (Structures)
Last changed: Christian-80.152.5.244

.
Summary
TODO - a short description

C# Definition:

[StructLayout(LayoutKind.Sequential, Pack=1)]
public struct RGBQUAD
{
    public byte rgbBlue;
    public byte rgbGreen;
    public byte rgbRed;
    public byte rgbReserved;
}

VB Definition:

<StructLayout(LayoutKind.Sequential)> _
Structure RGBQUAD
    Public rgbBlue As Byte
    Public rgbGreen As Byte
    Public rgbRed As Byte
    Public rgbReserved As Byte
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
RGBQUAD on MSDN