First BMP file header */
| 7 | |
| 8 | /* First BMP file header */ |
| 9 | struct BitmapHeader { |
| 10 | char magic[2]; |
| 11 | uint32 bmp_size; |
| 12 | uint32 img_offset; |
| 13 | }; |
| 14 | |
| 15 | /* Color model information for larger BMP headers */ |
| 16 | struct CIE_XYZ { |
nothing calls this directly
no outgoing calls
no test coverage detected