home *** CD-ROM | disk | FTP | other *** search
/ On Hand / On_Hand_From_Softbank_1994_Release_2_Disc_2_1994.iso / 00202 / s / disk3 / pictblt.h_ / pictblt.bin
Text File  |  1993-04-28  |  1KB  |  21 lines

  1. //---------------------------------------------------------------------------
  2. //        Copyright (C) 1992-93, Microsoft Corporation
  3. //
  4. // You have a royalty-free right to use, modify, reproduce and distribute
  5. // the Sample Custom Control Files (and/or any modified version) in any way
  6. // you find useful, provided that you agree that Microsoft has no warranty,
  7. // obligation or liability for any Custom Control File.
  8. //---------------------------------------------------------------------------
  9. // PictBlt.h
  10. //---------------------------------------------------------------------------
  11. // Provides the prototypes for PictStretchBlt, and PictFMemDC.
  12. // The macro PictBitBlt is also defined to correspond to the API BitBlt.
  13. //---------------------------------------------------------------------------
  14.  
  15. BOOL PictFMemDC(HDC hdc);
  16.  
  17. BOOL PictStretchBlt(HDC hdcDest, int x, int y, int cx, int cy, HDC hdcSrc, int xSrc, int ySrc, int cxSrc, int cySrc, DWORD dwRop);
  18.  
  19. #define PictBitBlt(hdcDest, x, y, cx, cy, hdcSrc, xSrc, ySrc, dwRop) \
  20.     PictStretchBlt(hdcDest, x, y, cx, cy, hdcSrc, xSrc, ySrc, cx, cy, dwRop)
  21.