mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
554 B
23 lines
554 B
/*******************************************************************************
|
|
*
|
|
* (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
|