Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 123 of file bmpdecode.c.
Referenced by BmpFrameDecode_CopyPixels().
{ BmpDecoder *This = impl_from_frame(iface); TRACE("(%p,%p,%p)\n", iface, puiWidth, puiHeight); if (This->bih.bV5Size == sizeof(BITMAPCOREHEADER)) { BITMAPCOREHEADER *bch = (BITMAPCOREHEADER*)&This->bih; *puiWidth = bch->bcWidth; *puiHeight = bch->bcHeight; } else { *puiWidth = This->bih.bV5Width; *puiHeight = abs(This->bih.bV5Height); } return S_OK; }