mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
a396029270
standard Windows names.
29 lines
709 B
C
29 lines
709 B
C
/*
|
|
* PostScript driver bitmap functions
|
|
*
|
|
* Copyright 1998 Huw D M Davies
|
|
*
|
|
*/
|
|
|
|
#include "gdi.h"
|
|
#include "psdrv.h"
|
|
#include "debug.h"
|
|
|
|
|
|
/***************************************************************************
|
|
*
|
|
* PSDRV_StretchDIBits
|
|
*/
|
|
INT PSDRV_StretchDIBits( DC *dc, INT xDst, INT yDst, INT widthDst,
|
|
INT heightDst, INT xSrc, INT ySrc,
|
|
INT widthSrc, INT heightSrc, const void *bits,
|
|
const BITMAPINFO *info, UINT wUsage, DWORD dwRop )
|
|
{
|
|
TRACE(psdrv, "(%d,%d %dx%d) -> (%d,%d %dx%d) on %08x. %d colour bits\n",
|
|
xSrc, ySrc, widthSrc, heightSrc, xDst, yDst, widthDst, heightDst,
|
|
dc->hSelf, info->bmiHeader.biBitCount);
|
|
|
|
|
|
FIXME(psdrv, "stub\n");
|
|
return FALSE;
|
|
}
|