windows-nt/Source/XPSP1/NT/printscan/ui/uicommon/rescale.h
2020-09-26 16:20:57 +08:00

24 lines
554 B
C

/*******************************************************************************
*
* (C) COPYRIGHT MICROSOFT CORPORATION, 1998
*
* TITLE: RESCALE.H
*
* VERSION: 1.0
*
* AUTHOR: ShaunIv
*
* DATE: 10/15/1998
*
* DESCRIPTION: Scale HBITMAPs using StretchBlt
*
*******************************************************************************/
#ifndef _RESCALE_H_INCLUDED
#define _RESCALE_H_INCLUDED
#include <windows.h>
HRESULT ScaleImage( HDC hDC, HBITMAP hBmpSrc, HBITMAP &hBmpTgt, const SIZE &sizeTgt );
#endif