// wiautil.h
typedef struct _BMP_IMAGE_INFO {
INT Width;
INT Height;
INT ByteWidth;
INT Size;
} BMP_IMAGE_INFO, *PBMP_IMAGE_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The BMP_IMAGE_INFO structure contains information about a BMP image.
WidthSpecifies the width of the image, in pixels.
HeightSpecifies the height of the image, in lines.
ByteWidthSpecifies the width of the image, in bytes.
SizeSpecifies the total size of the image, including headers, in bytes.