Bitmap array file header structure.

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

typedef   BITMAPARRAYFILEHEADER2   * PBITMAPARRAYFILEHEADER2 ;


[Back] [Next]