Jump to content

BITMAPARRAYFILEHEADER: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Bitmap array file header structure.
Bitmap array file header structure.
  typedef struct _BITMAPARRAYFILEHEADER {
  typedef struct _BITMAPARRAYFILEHEADER {
   USHORT              usType;     /*  Type of structure. */
   USHORT              usType;
   ULONG                cbSize;     /*  Size of the BITMAPARRAYFILEHEADER structure in bytes. */
   ULONG                cbSize;
   ULONG                offNext;   /*  Offset of the next BITMAPARRAYFILEHEADER structure from the start of the file. */
   ULONG                offNext;
   USHORT              cxDisplay; /*  Device width, in pels. */
   USHORT              cxDisplay;
   USHORT              cyDisplay; /*  Device height, in pels. */
   USHORT              cyDisplay;
   [[BITMAPFILEHEADER]]    bfh;       /*  Bitmap file header structure. */
   [[BITMAPFILEHEADER]]    bfh;
  } BITMAPARRAYFILEHEADER;
  } BITMAPARRAYFILEHEADER;
 
  typedef  BITMAPARRAYFILEHEADER  * PBITMAPARRAYFILEHEADER ;
  typedef  BITMAPARRAYFILEHEADER  * PBITMAPARRAYFILEHEADER ;


==Fields==
==Fields==
;usType (USHORT)
;usType (USHORT):Type of structure.
:Type of structure.
:Possible values are shown in the following list:
:Possible values are shown in the following list:
:;BFT_BITMAPARRAY
::BFT_BITMAPARRAY:(0x4142 - 'BA' for BITMAPARRAYFILEHEADER or BITMAPARRAYFILEHEADER2)
::(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.
; cbSize (ULONG)
; cxDisplay (USHORT):Device width, in pels.
:Size of the BITMAPARRAYFILEHEADER structure in bytes.
; cyDisplay (USHORT):Device height, in pels.
 
; bfh (BITMAPFILEHEADER):Bitmap file header structure.
; 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)
[[Category:PM Data type]]
:Bitmap file header structure.
[[Category: Data type]]

Latest revision as of 12:40, 2 April 2025

Bitmap array file header structure.

typedef struct _BITMAPARRAYFILEHEADER {
 USHORT               usType;
 ULONG                cbSize;
 ULONG                offNext;
 USHORT               cxDisplay;
 USHORT               cyDisplay;
 BITMAPFILEHEADER     bfh;
} 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.