//------------------------------------------------------------------------------ // DIBVIEW.H header file //------------------------------------------------------------------------------ #ifndef DIBVIEW_H #define DIBVIEW_H class DIB; #define DIB_ACTUAL 20 #define DIB_STRETCH 21 #define DIB_TILE 22 class _export DIBVIEW : public DIB { WORD wDisplay; int cxDib, cyDib; public: DIBVIEW(); ~DIBVIEW() {} BOOL LoadDIB(LPCSTR szDib); void PaintDIB(HWND hwnd, HDC hdc); int GetDisplayType() { return wDisplay; } void SetDisplayType(int type) { wDisplay = type; } }; #endif