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.

19 lines
597 B

  1. #if !defined(UTIL__GfxHelp_h__INCLUDED)
  2. #define BASE__GfxHelp_h__INCLUDED
  3. #pragma once
  4. #pragma comment(lib, "msimg32.lib")
  5. namespace Gdiplus
  6. {
  7. class Graphics;
  8. class Brush;
  9. };
  10. class DuSurface;
  11. BOOL GdDrawBlendRect(HDC hdcDest, const RECT * prcDest, HBRUSH hbrFill, BYTE bAlpha, int wBrush, int hBrush);
  12. BOOL GdDrawOutlineRect(HDC hdc, const RECT * prcPxl, HBRUSH hbrDraw, int nThickness = 1);
  13. BOOL GdDrawOutlineRect(Gdiplus::Graphics * pgpgr, const RECT * prcPxl, Gdiplus::Brush * pgpbr, int nThickness = 1);
  14. #endif // BASE__GfxHelp_h__INCLUDED