| 3320 | // Maybe this applies only to negative height, in which case the second call to GetDIBits() |
| 3321 | // below uses one. |
| 3322 | struct BITMAPINFO3 |
| 3323 | { |
| 3324 | BITMAPINFOHEADER bmiHeader; |
| 3325 | RGBQUAD bmiColors[260]; // v1.0.40.10: 260 vs. 3 to allow room for color table when color depth is 8-bit or less. |
| 3326 | } bmi; |
| 3327 | |
| 3328 | bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); |
| 3329 | bmi.bmiHeader.biBitCount = 0; // i.e. "query bitmap attributes" only. |
nothing calls this directly
no outgoing calls
no test coverage detected