Leaked source code of windows server 2003
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.

18 lines
487 B

  1. /////////////////////////////////////////////////////////////////
  2. // TRANSBMP.H
  3. //
  4. // Transparent bitmap header
  5. //
  6. #ifndef __TRANSBMP_H__
  7. #define __TRANSBMP_H__
  8. extern "C"
  9. {
  10. void DrawTrans( HDC hDC, HBITMAP hBmp, int x, int y, int dx = -1, int dy = -1 );
  11. void Draw( HDC hDC, HBITMAP hBmp, int x, int y, int dx = -1, int dy = -1, bool bStretch = false );
  12. void Draw3dBox(HDC hDC, RECT& rect, bool bUp);
  13. void Erase3dBox(HDC hDC, RECT& rect, HBRUSH hbr );
  14. }
  15. #endif