namespace BinaryObjectScanner.Models.BMP
{
///
/// The BITMAPFILEHEADER structure contains information about the type, size,
/// and layout of a file that contains a DIB.
///
///
public sealed class BITMAPFILEHEADER
{
///
/// The file type; must be BM.
///
public ushort Type;
///
/// The size, in bytes, of the bitmap file.
///
public uint Size;
///
/// Reserved; must be zero.
///
public ushort Reserved1;
///
/// Reserved; must be zero.
///
public ushort Reserved2;
///
/// The offset, in bytes, from the beginning of the BITMAPFILEHEADER structure to the bitmap bits.
///
public uint OffBits;
}
}