Jump to content

BITMAPFILEHEADER

From EDM2
Revision as of 17:53, 25 May 2024 by Martini (talk | contribs) (Created page with "Bitmap file header strcuture. <PRE> typedef struct _BITMAPFILEHEADER { USHORT usType; Type of resource the file contains.: ULONG cbSi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Bitmap file header strcuture.

typedef struct _BITMAPFILEHEADER {
  USHORT               usType;    /*  Type of resource the file contains. */
  ULONG                cbSize;    /*  Size of the BITMAPFILEHEADER structure in bytes. */
  SHORT                xHotspot;  /*  Width of hotspot for icons and pointers. */
  SHORT                yHotspot;  /*  Height of hotspot for icons and pointers. */
  USHORT               offBits;   /*  Offset in bytes. */
  BITMAPINFOHEADER     bmp;       /*  Bitmap information header structure. */
} BITMAPFILEHEADER;

typedef   BITMAPFILEHEADER   * PBITMAPFILEHEADER ;