Leaked source code of windows server 2003
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.
|
|
/*******************************************************************************
* * (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
|