home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / misc / ddutil2.h < prev    next >
C/C++ Source or Header  |  1997-07-14  |  1KB  |  24 lines

  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.  
  10. #ifdef __cplusplus
  11. extern "C" {            /* Assume C declarations for C++ */
  12. #endif    /* __cplusplus */
  13.  
  14. extern IDirectDrawPalette * DDLoadPalette2(IDirectDraw2 *pdd, LPCSTR szBitmap);
  15. extern IDirectDrawSurface3 * DDLoadBitmap2(IDirectDraw2 *pdd, LPCSTR szBitmap, int dx, int dy);
  16. extern HRESULT              DDReLoadBitmap2(IDirectDrawSurface3 *pdds, LPCSTR szBitmap);
  17. extern HRESULT              DDCopyBitmap2(IDirectDrawSurface3 *pdds, HBITMAP hbm, int x, int y, int dx, int dy);
  18. extern DWORD                DDColorMatch2(IDirectDrawSurface3 *pdds, COLORREF rgb);
  19. extern HRESULT              DDSetColorKey2(IDirectDrawSurface3 *pdds, COLORREF rgb);
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif    /* __cplusplus */
  24.