Jump to content

BITMAPARRAYFILEHEADER

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

Bitmap array file header structure.

typedef struct _BITMAPARRAYFILEHEADER {
  USHORT               usType;     /*  Type of structure. */
  ULONG                cbSize;     /*  Size of the BITMAPARRAYFILEHEADER structure in bytes. */
  ULONG                offNext;    /*  Offset of the next BITMAPARRAYFILEHEADER structure from the start of the file. */
  USHORT               cxDisplay;  /*  Device width, in pels. */
  USHORT               cyDisplay;  /*  Device height, in pels. */
  BITMAPFILEHEADER     bfh;        /*  Bitmap file header structure. */
} BITMAPARRAYFILEHEADER;

typedef   BITMAPARRAYFILEHEADER   * PBITMAPARRAYFILEHEADER ;