25 lines
730 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
//---------------------------------------------------------------------------
// BmpCache.cpp - single bitmap/hdc cache object for uxtheme
//---------------------------------------------------------------------------
#pragma once
//---------------------------------------------------------------------------
class CBitmapCache
{
public:
//---- public methods ----
CBitmapCache();
~CBitmapCache();
HBITMAP AcquireBitmap(HDC hdc, int iWidth, int iHeight);
void ReturnBitmap();
protected:
//---- data ----
HBITMAP _hBitmap;
int _iWidth;
int _iHeight;
CRITICAL_SECTION _csBitmapCache;
};
//---------------------------------------------------------------------------