mirror of https://github.com/tongzx/nt5src
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.
39 lines
821 B
39 lines
821 B
// File: pfndrawd.h
|
|
|
|
#ifndef _PFNDRAWD_H_
|
|
#define _PFNDRAWD_H_
|
|
|
|
#include <vfw.h>
|
|
|
|
typedef HDRAWDIB (VFWAPI * PFN_DRAWDIBOPEN) ();
|
|
|
|
typedef BOOL (VFWAPI * PFN_DRAWDIBCLOSE) (HDRAWDIB hdd);
|
|
|
|
typedef BOOL (VFWAPI * PFN_DRAWDIBDRAW) (HDRAWDIB hdd,
|
|
HDC hdc, int xDst, int yDst, int dxDst, int dyDst,
|
|
LPBITMAPINFOHEADER lpbi, LPVOID lpBits,
|
|
int xSrc, int ySrc, int dxSrc, int dySrc, UINT wFlags);
|
|
|
|
typedef BOOL (VFWAPI * PFN_DRAWDIBSETPALETTE) (HDRAWDIB hdd, HPALETTE hpal);
|
|
|
|
|
|
class DRAWDIB
|
|
{
|
|
private:
|
|
static HINSTANCE m_hInstance;
|
|
|
|
protected:
|
|
DRAWDIB() {};
|
|
~DRAWDIB() {};
|
|
|
|
public:
|
|
static HRESULT Init(void);
|
|
|
|
static PFN_DRAWDIBDRAW DrawDibDraw;
|
|
static PFN_DRAWDIBOPEN DrawDibOpen;
|
|
static PFN_DRAWDIBCLOSE DrawDibClose;
|
|
static PFN_DRAWDIBSETPALETTE DrawDibSetPalette;
|
|
};
|
|
|
|
#endif /* _PFNDRAWD_H_ */
|
|
|