]> icculus.org git repositories - btb/d2x.git/blob - arch/win32/d3dframe/ddutil.h
implement -nomusic for linux hmiplay (d1x r1.8)
[btb/d2x.git] / arch / win32 / d3dframe / ddutil.h
1 /*==========================================================================
2  *
3  *  Copyright (C) 1998 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  *DDLoadPalette(IDirectDraw4 *pdd, LPCSTR szBitmap);
15 extern IDirectDrawSurface4 *DDLoadBitmap(IDirectDraw4 *pdd, LPCSTR szBitmap, int dx, int dy);
16 extern HRESULT              DDReLoadBitmap(IDirectDrawSurface4 *pdds, LPCSTR szBitmap);
17 extern HRESULT              DDCopyBitmap(IDirectDrawSurface4 *pdds, HBITMAP hbm, int x, int y, int dx, int dy);
18 extern DWORD                DDColorMatch(IDirectDrawSurface4 *pdds, COLORREF rgb);
19 extern HRESULT              DDSetColorKey(IDirectDrawSurface4 *pdds, COLORREF rgb);
20
21 #ifdef __cplusplus
22 }
23 #endif  /* __cplusplus */
24