Lines Matching defs:hdr
186 BITMAPINFOHEADER hdr;
187 memset(&hdr, 0, sizeof(hdr));
188 hdr.biSize = sizeof(BITMAPINFOHEADER);
189 hdr.biWidth = width;
190 hdr.biHeight = -height; // Minus means top-down bitmap.
191 hdr.biPlanes = 1;
192 hdr.biBitCount = 32;
193 hdr.biCompression = BI_RGB; // No compression.
194 hdr.biSizeImage = 0;
195 hdr.biXPelsPerMeter = 1;
196 hdr.biYPelsPerMeter = 1;
198 HBITMAP hbitmap = CreateDIBSection(nullptr, (const BITMAPINFO*)&hdr, 0, &pixels, 0, 0);