Jump to content

BMAPINFO

From EDM2
Revision as of 15:49, 27 December 2019 by Martini (talk | contribs) (Created page with "Device-dependent bit map information structure. ==Type== typedef struct _BMAPINFO { ULONG ulLength; Length of the BMAPINFO data structure, in bytes.: UL...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Device-dependent bit map information structure.

Type

typedef struct _BMAPINFO {
 ULONG     ulLength;        /*  Length of the BMAPINFO data structure, in bytes. */
 ULONG     ulType;          /*  Description of the Blt. */
 ULONG     ulWidth;         /*  Width in pels of the bit map. */
 ULONG     ulHeight;        /*  Height in pels of the bit map. */
 ULONG     ulBpp;           /*  Number of bits per pel/color depth. */
 ULONG     ulBytesPerLine;  /*  Number of aligned bytes per line. */
 PBYTE     pBits;           /*  Pointer to bit-map bits. */
} BMAPINFO;

C Declaration Method

typedef BMAPINFO *PBMAPINFO;