BITMAPARRAYFILEHEADER2: Difference between revisions
Appearance
Created page with "Bitmap array file header structure. </PRE> typedef struct _BITMAPARRAYFILEHEADER2 { USHORT usType; →Type of structure.: ULONG cbSiz..." |
No edit summary |
||
Line 1: | Line 1: | ||
Bitmap array file header structure. | Bitmap array file header structure. | ||
< | <PRE> | ||
typedef struct _BITMAPARRAYFILEHEADER2 { | typedef struct _BITMAPARRAYFILEHEADER2 { | ||
USHORT usType; /* Type of structure. */ | USHORT usType; /* Type of structure. */ | ||
Line 12: | Line 12: | ||
typedef BITMAPARRAYFILEHEADER2 * PBITMAPARRAYFILEHEADER2 ; | typedef BITMAPARRAYFILEHEADER2 * PBITMAPARRAYFILEHEADER2 ; | ||
<PRE> | </PRE> | ||
[[Category: Data type]] | [[Category: Data type]] |
Revision as of 17:53, 25 May 2024
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 ;