BITMAPFILEHEADER

Declared in Class PicBMP

  19 Private Type BITMAPFILEHEADER
  20         bfType As Integer       ' Specifies the file type, must be BM.

   ! Type field written, not read: BITMAPFILEHEADER.bfSize - 0 reads, 1 write
  21         bfSize As Long          ' Specifies the size, in bytes, of the bitmap file.
  22         bfReserved1 As Integer  ' Reserved; must be zero.
  23         bfReserved2 As Integer  ' Reserved; must be zero.

   ! Type field written, not read: BITMAPFILEHEADER.bfOffBits - 0 reads, 1 write
  24         bfOffBits As Long       ' Specifies the offset, in bytes, from the beginning of the BITMAPFILEHEADER structure to the bitmap bits.

   • Too many uncommented lines: 27
  25 End Type

References

Data: ReadBitmapFile, line 70, Class PicBMP