Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
633 B

  1. // in stretch.asm
  2. void FAR PASCAL StretchDIB(
  3. LPBITMAPINFOHEADER biDst, // --> BITMAPINFO of destination
  4. LPVOID lpDst, // --> to destination bits
  5. int DstX, // Destination origin - x coordinate
  6. int DstY, // Destination origin - y coordinate
  7. int DstXE, // x extent of the BLT
  8. int DstYE, // y extent of the BLT
  9. LPBITMAPINFOHEADER biSrc, // --> BITMAPINFO of source
  10. LPVOID lpSrc, // --> to source bits
  11. int SrcX, // Source origin - x coordinate
  12. int SrcY, // Source origin - y coordinate
  13. int SrcXE, // x extent of the BLT
  14. int SrcYE); // y extent of the BLT