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.

66 lines
745 B

  1. /*++
  2. Copyright (c) 1990-2003 Microsoft Corporation
  3. Module Name:
  4. brush.h
  5. Abstract:
  6. This module contains brush definitions and prototypes for module brush.c
  7. Author:
  8. 27-Jan-1994 Thu 21:05:01 created
  9. [Environment:]
  10. GDI Device Driver - Plotter.
  11. [Notes:]
  12. Revision History:
  13. --*/
  14. #ifndef _PLOTBRUSH_
  15. #define _PLOTBRUSH_
  16. VOID
  17. ResetDBCache(
  18. PPDEV pPDev
  19. );
  20. LONG
  21. FindDBCache(
  22. PPDEV pPDev,
  23. WORD DBUniq
  24. );
  25. BOOL
  26. CopyUserPatBGR(
  27. PPDEV pPDev,
  28. SURFOBJ *psoPat,
  29. XLATEOBJ *pxlo,
  30. LPBYTE pBGRBmp
  31. );
  32. VOID
  33. GetMinHTSize(
  34. PPDEV pPDev,
  35. SIZEL *pszlPat
  36. );
  37. #endif // _PLOTBRUSH_