windows-nt/Source/XPSP1/NT/multimedia/media/avi/drawdib.16/stretch.h

16 lines
618 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// in stretch.asm
void FAR PASCAL StretchDIB(
LPBITMAPINFOHEADER biDst, // --> BITMAPINFO of destination
LPVOID lpDst, // --> to destination bits
int DstX, // Destination origin - x coordinate
int DstY, // Destination origin - y coordinate
int DstXE, // x extent of the BLT
int DstYE, // y extent of the BLT
LPBITMAPINFOHEADER biSrc, // --> BITMAPINFO of source
LPVOID lpSrc, // --> to source bits
int SrcX, // Source origin - x coordinate
int SrcY, // Source origin - y coordinate
int SrcXE, // x extent of the BLT
int SrcYE); // y extent of the BLT