Added correct implementation of GetCaps, changed Play and Stop handling
[wine/multimedia.git] / graphics / psdrv / bitmap.c
blob1a0698b8051ce10b56226e44cd35fc67dfee3c9f
1 /*
2 * PostScript driver bitmap functions
4 * Copyright 1998 Huw D M Davies
6 */
8 #include "windows.h"
9 #include "gdi.h"
10 #include "psdrv.h"
11 #include "debug.h"
14 /***************************************************************************
16 * PSDRV_StretchDIBits
18 INT32 PSDRV_StretchDIBits( DC *dc, INT32 xDst, INT32 yDst, INT32 widthDst,
19 INT32 heightDst, INT32 xSrc, INT32 ySrc,
20 INT32 widthSrc, INT32 heightSrc, const void *bits,
21 const BITMAPINFO *info, UINT32 wUsage, DWORD dwRop )
23 TRACE(psdrv, "(%d,%d %dx%d) -> (%d,%d %dx%d) on %08x. %d colour bits\n",
24 xSrc, ySrc, widthSrc, heightSrc, xDst, yDst, widthDst, heightDst,
25 dc->hSelf, info->bmiHeader.biBitCount);
28 FIXME(psdrv, "stub\n");
29 return FALSE;