BITMAPFILEHEADER2: Difference between revisions
Appearance
Created page with "Bitmap file header structure. <PRE> typedef struct _BITMAPFILEHEADER2 { USHORT usType; →Type of resource the file contains.: ULONG c..." |
(No difference)
|
Revision as of 17:54, 25 May 2024
Bitmap file header structure.
typedef struct _BITMAPFILEHEADER2 { USHORT usType; /* Type of resource the file contains. */ ULONG cbSize; /* Size of the BITMAPFILEHEADER2 structure in bytes. */ SHORT xHotspot; /* Width of hotspot for icons and pointers. */ SHORT yHotspot; /* Height of hotspot for icons and pointers. */ USHORT offBits; /* Offset in bytes. */ BITMAPINFOHEADER2 bmp2; /* Bitmap information header structure. */ } BITMAPFILEHEADER2; typedef BITMAPFILEHEADER2 * PBITMAPFILEHEADER2 ;