BITMAPS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. //  File:       bitmaps.h
  7. //
  8. //  Contents:   bitmap helper functions
  9. //
  10. //  Classes:
  11. //
  12. //  Functions:  DDBChangeColor
  13. //              LoadAndStretch
  14. //
  15. //  History:    6-24-94   stevebl   Created
  16. //
  17. //----------------------------------------------------------------------------
  18. #ifndef __BITMAPS_H__
  19. #define __BITMAPS_H__
  20. #define DSPDxax 0x00E20746L
  21. BOOL DDBChangeColor (
  22.     HBITMAP hBitmap,
  23.     COLORREF crFrom,
  24.     COLORREF crTo);
  25. BOOL LoadAndStretch (
  26.     HINSTANCE hinst,
  27.     HBITMAP hbmpDest,
  28.     LPTSTR lpszResource,
  29.     UINT cxBitmap,
  30.     UINT cyBitmap,
  31.     COLORREF crHigh,
  32.     COLORREF crNorm);
  33. #endif //__BITMAPS_H__