-Fixed MESSAGE functions that were thunking down to 16 bits implementation.
[wine] / graphics / psdrv / bitmap.c
1 /*
2  *      PostScript driver bitmap functions
3  *
4  * Copyright 1998  Huw D M Davies
5  *
6  */
7
8 #include "windows.h"
9 #include "gdi.h"
10 #include "psdrv.h"
11 #include "debug.h"
12
13
14 /***************************************************************************
15  *
16  *      PSDRV_StretchDIBits
17  */
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 )
22 {
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);
26
27
28     FIXME(psdrv, "stub\n");
29     return FALSE;
30 }