Large-scale renaming of all Win32 functions and types to use the
[wine.git] / graphics / psdrv / bitmap.c
blob6cf8e1f93010ec94d3b3aa85429cba31e26c3a66
1 /*
2 * PostScript driver bitmap functions
4 * Copyright 1998 Huw D M Davies
6 */
8 #include "gdi.h"
9 #include "psdrv.h"
10 #include "debug.h"
13 /***************************************************************************
15 * PSDRV_StretchDIBits
17 INT PSDRV_StretchDIBits( DC *dc, INT xDst, INT yDst, INT widthDst,
18 INT heightDst, INT xSrc, INT ySrc,
19 INT widthSrc, INT heightSrc, const void *bits,
20 const BITMAPINFO *info, UINT wUsage, DWORD dwRop )
22 TRACE(psdrv, "(%d,%d %dx%d) -> (%d,%d %dx%d) on %08x. %d colour bits\n",
23 xSrc, ySrc, widthSrc, heightSrc, xDst, yDst, widthDst, heightDst,
24 dc->hSelf, info->bmiHeader.biBitCount);
27 FIXME(psdrv, "stub\n");
28 return FALSE;