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
66 lines
745 B
/*++
|
|
|
|
Copyright (c) 1990-2003 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
brush.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains brush definitions and prototypes for module brush.c
|
|
|
|
|
|
Author:
|
|
|
|
27-Jan-1994 Thu 21:05:01 created
|
|
|
|
|
|
[Environment:]
|
|
|
|
GDI Device Driver - Plotter.
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PLOTBRUSH_
|
|
#define _PLOTBRUSH_
|
|
|
|
|
|
VOID
|
|
ResetDBCache(
|
|
PPDEV pPDev
|
|
);
|
|
|
|
|
|
LONG
|
|
FindDBCache(
|
|
PPDEV pPDev,
|
|
WORD DBUniq
|
|
);
|
|
|
|
BOOL
|
|
CopyUserPatBGR(
|
|
PPDEV pPDev,
|
|
SURFOBJ *psoPat,
|
|
XLATEOBJ *pxlo,
|
|
LPBYTE pBGRBmp
|
|
);
|
|
|
|
VOID
|
|
GetMinHTSize(
|
|
PPDEV pPDev,
|
|
SIZEL *pszlPat
|
|
);
|
|
|
|
|
|
#endif // _PLOTBRUSH_
|