Lines Matching defs:pbmih
358 BITMAPINFOHEADER *pbmih = NULL;
373 pbmih = (BITMAPINFOHEADER*) malloc (sizeof (BITMAPINFOHEADER)
375 if (pbmih == NULL)
380 ZeroMemory (pbmih, sizeof(BITMAPINFOHEADER) + 256 * sizeof (RGBQUAD));
383 pbmih->biSize = sizeof (BITMAPINFOHEADER);
384 pbmih->biWidth = iWidth;
385 pbmih->biHeight = -iHeight;
386 pbmih->biPlanes = 1;
387 pbmih->biBitCount = iDepth;
388 pbmih->biCompression = BI_RGB;
389 pbmih->biSizeImage = 0;
390 pbmih->biXPelsPerMeter = 0;
391 pbmih->biYPelsPerMeter = 0;
392 pbmih->biClrUsed = 0;
393 pbmih->biClrImportant = 0;
398 pbmi = (BITMAPINFO*) pbmih;
406 (BITMAPINFO *) pbmih,
421 *ppbmi = (BITMAPINFO *) pbmih;
425 free (pbmih);
426 pbmih = NULL;