BITMAPARRAYFILEHEADER: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 14: | Line 14: | ||
==Fields== | ==Fields== | ||
; usType (USHORT) | ;usType (USHORT) | ||
:Type of structure. | |||
:Type of | |||
:Possible values are shown in the following list: | :Possible values are shown in the following list: | ||
:;BFT_BITMAPARRAY | |||
::(0x4142 - 'BA' for BITMAPARRAYFILEHEADER or BITMAPARRAYFILEHEADER2) | |||
:; | |||
::( | |||
; cbSize (ULONG) | ; cbSize (ULONG) | ||
Revision as of 17:06, 25 May 2024
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 ;
Fields
- usType (USHORT)
- Type of structure.
- Possible values are shown in the following list:
- BFT_BITMAPARRAY
- (0x4142 - 'BA' for BITMAPARRAYFILEHEADER or BITMAPARRAYFILEHEADER2)
- cbSize (ULONG)
- Size of the BITMAPARRAYFILEHEADER structure in bytes.
- offNext (ULONG)
- Offset of the next BITMAPARRAYFILEHEADER structure from the start of the file.
- cxDisplay (USHORT)
- Device width, in pels.
- cyDisplay (USHORT)
- Device height, in pels.
- bfh (BITMAPFILEHEADER)
- Bitmap file header structure.