2 instantiations of BITMAPINFOHEADER
System.Windows.Forms (2)
System\Windows\Forms\Control.MetafileDCWrapper.cs (1)
126*((BITMAPINFOHEADER*)bi) = new BITMAPINFOHEADER
System\Windows\Forms\Rendering\ControlPaint.cs (1)
193*((BITMAPINFOHEADER*)bi) = new BITMAPINFOHEADER
11 references to BITMAPINFOHEADER
System.Drawing.Common (2)
System\Drawing\BufferedGraphicsContext.cs (1)
215bitmapInfo->bmiHeader.biSize = (uint)sizeof(BITMAPINFOHEADER);
System\Drawing\Icon.cs (1)
643int newOffset = (int)(_bestImageOffset + sizeof(BITMAPINFOHEADER));
System.Private.Windows.Core (1)
Windows.Win32.BITMAPINFO.g.cs (1)
34 internal winmdroot.Graphics.Gdi.BITMAPINFOHEADER bmiHeader;
System.Windows.Forms (8)
System\Windows\Forms\Control.MetafileDCWrapper.cs (4)
121((int)checked((sizeof(BITMAPINFOHEADER) + (sizeof(RGBQUAD) * colorEntryCount)))); 126*((BITMAPINFOHEADER*)bi) = new BITMAPINFOHEADER 128biSize = (uint)sizeof(BITMAPINFOHEADER), 144byte* pcolors = bi + sizeof(BITMAPINFOHEADER);
System\Windows\Forms\Rendering\ControlPaint.cs (4)
188(checked((int)(sizeof(BITMAPINFOHEADER) + (sizeof(RGBQUAD) * entryCount)))); 193*((BITMAPINFOHEADER*)bi) = new BITMAPINFOHEADER 195biSize = (uint)sizeof(BITMAPINFOHEADER), 203Span<RGBQUAD> colors = new(bi + sizeof(BITMAPINFOHEADER), (int)entryCount);