mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-06 06:11:45 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Data.Models.Bitmap
|
|
{
|
|
/// <summary>
|
|
/// The BITMAPFILEHEADER structure contains information about the type, size,
|
|
/// and layout of a file that contains a DIB.
|
|
/// </summary>
|
|
/// <see href="https://learn.microsoft.com/en-us/windows/win32/api/wingdi/ns-wingdi-bitmapfileheader"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class BITMAPFILEHEADER
|
|
{
|
|
/// <summary>
|
|
/// The file type; must be BM.
|
|
/// </summary>
|
|
public ushort Type;
|
|
|
|
/// <summary>
|
|
/// The size, in bytes, of the bitmap file.
|
|
/// </summary>
|
|
public uint Size;
|
|
|
|
/// <summary>
|
|
/// Reserved; must be zero.
|
|
/// </summary>
|
|
public ushort Reserved1;
|
|
|
|
/// <summary>
|
|
/// Reserved; must be zero.
|
|
/// </summary>
|
|
public ushort Reserved2;
|
|
|
|
/// <summary>
|
|
/// The offset, in bytes, from the beginning of the BITMAPFILEHEADER structure to the bitmap bits.
|
|
/// </summary>
|
|
public uint OffBits;
|
|
}
|
|
}
|