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.
19 lines
487 B
19 lines
487 B
/////////////////////////////////////////////////////////////////
|
|
// TRANSBMP.H
|
|
//
|
|
// Transparent bitmap header
|
|
//
|
|
|
|
#ifndef __TRANSBMP_H__
|
|
#define __TRANSBMP_H__
|
|
|
|
extern "C"
|
|
{
|
|
void DrawTrans( HDC hDC, HBITMAP hBmp, int x, int y, int dx = -1, int dy = -1 );
|
|
void Draw( HDC hDC, HBITMAP hBmp, int x, int y, int dx = -1, int dy = -1, bool bStretch = false );
|
|
|
|
void Draw3dBox(HDC hDC, RECT& rect, bool bUp);
|
|
void Erase3dBox(HDC hDC, RECT& rect, HBRUSH hbr );
|
|
}
|
|
|
|
#endif
|