Jump to content

BITMAPFILEHEADER2

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

Bitmap file header structure.

typedef struct _BITMAPFILEHEADER2 {
  USHORT                usType;    /*  Type of resource the file contains. */
  ULONG                 cbSize;    /*  Size of the BITMAPFILEHEADER2 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. */
  BITMAPINFOHEADER2     bmp2;      /*  Bitmap information header structure. */
} BITMAPFILEHEADER2;

typedef   BITMAPFILEHEADER2   * PBITMAPFILEHEADER2 ;