Lines Matching refs:aBIH
110 BITMAPINFOHEADER aBIH; in getFastPropertyValue() local
112 aBIH.biSize = sizeof( BITMAPINFOHEADER ); in getFastPropertyValue()
113 aBIH.biWidth = aSize.getX(); in getFastPropertyValue()
114 aBIH.biHeight = -aSize.getY(); in getFastPropertyValue()
115 aBIH.biPlanes = 1; in getFastPropertyValue()
116 aBIH.biBitCount = 32; in getFastPropertyValue()
117 aBIH.biCompression = BI_RGB; // expects pixel in in getFastPropertyValue()
120 aBIH.biSizeImage = 0; in getFastPropertyValue()
121 aBIH.biXPelsPerMeter = 0; in getFastPropertyValue()
122 aBIH.biYPelsPerMeter = 0; in getFastPropertyValue()
123 aBIH.biClrUsed = 0; in getFastPropertyValue()
124 aBIH.biClrImportant = 0; in getFastPropertyValue()
145 …Bits( hScreenDC, hBmpBitmap, 0, aSize.getY(), aBmpData.Scan0, (PBITMAPINFO)&aBIH, DIB_RGB_COLORS ); in getFastPropertyValue()