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.

23 lines
577 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 1998
  4. *
  5. * TITLE: RESCALE.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: ShaunIv
  10. *
  11. * DATE: 10/15/1998
  12. *
  13. * DESCRIPTION: Scale HBITMAPs using StretchBlt
  14. *
  15. *******************************************************************************/
  16. #ifndef _RESCALE_H_INCLUDED
  17. #define _RESCALE_H_INCLUDED
  18. #include <windows.h>
  19. HRESULT ScaleImage( HDC hDC, HBITMAP hBmpSrc, HBITMAP &hBmpTgt, const SIZE &sizeTgt );
  20. #endif