ddutil.h
上传用户:oldpeter23
上传日期:2013-01-09
资源大小:1111k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File:       ddutil.cpp
  6.  *  Content:    Routines for loading bitmap and palettes from resources
  7.  *
  8.  ***************************************************************************/
  9. #ifdef __cplusplus
  10. extern "C" {            /* Assume C declarations for C++ */
  11. #endif /* __cplusplus */
  12. extern IDirectDrawPalette * DDLoadPalette(IDirectDraw *pdd, LPCSTR szBitmap);
  13. extern IDirectDrawSurface * DDLoadBitmap(IDirectDraw *pdd, LPCSTR szBitmap, int dx, int dy);
  14. extern HRESULT              DDReLoadBitmap(IDirectDrawSurface *pdds, LPCSTR szBitmap);
  15. extern HRESULT              DDCopyBitmap(IDirectDrawSurface *pdds, HBITMAP hbm, int x, int y, int dx, int dy);
  16. extern DWORD                DDColorMatch(IDirectDrawSurface *pdds, COLORREF rgb);
  17. extern HRESULT              DDSetColorKey(IDirectDrawSurface *pdds, COLORREF rgb);
  18. #ifdef __cplusplus
  19. }
  20. #endif /* __cplusplus */